http://d.puremagic.com/issues/show_bug.cgi?id=4533
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #5 from Andrej Mitrovic <[email protected]> 2010-08-01 07:10:23 PDT --- Is the following relevant to this bug report? In the docs (http://www.digitalmars.com/d/2.0/declaration.html), there's this code: void main() { struct S { static int i; } S s; alias s.i a; // illegal, s.i is an expression alias S.i b; // ok b = 4; // sets S.i to 4 } But this will compile. I'm not sure if it's relevant to this bug report or if I should open up a new one? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
