Comment #0 by bruno.do.medeiros+deebugz — 2013-03-05T04:21:41Z
The following is valid source according to the grammar (and is sensible code), but DMD doesn't parse it:
class Xpto {
class Inner {
}
}
Xpto xpto;
void func() {
auto x = (xpto).new Inner(); // Doesn't parse
}
auto x = (xpto).new Inner(); // Doesn't parse