On Wednesday, 26 April 2023 at 01:39:14 UTC, Walter Bright wrote:
> That only does a subset of the proposal. The inference only
> works in specific cases. Things like function overloading are
> not addressed.
Should we remove struct initializers as well?
```D
struct S { int x; }
void fun(S) {}
fun({42}); // Error
```