Comment #0 by bearophile_hugs — 2011-07-12T11:55:14Z
Regarding "Removing limitations", I'd like this to compile with no need to write a constructor:
struct Foo { int x; }
void main() {
auto f = new Foo(1);
}
In DMD 2.054 this gives:
test.d(3): Error: no constructor for Foo
Comment #1 by lt.infiltrator — 2014-03-19T18:57:08Z