http://d.puremagic.com/issues/show_bug.cgi?id=10484
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Andrej Mitrovic <[email protected]> 2013-06-26 20:37:46 PDT --- I don't think it's possible without creating problems: ----- class C { static class D { static int opCall() { return 0; } } } void main() { int i = new C().D(); // instance of C + D's static opCall Object d = new C.D(); // instance of D } ----- The last line is the problematic one. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
