digitalmars.D.bugs - [Issue 9256] New: A purity-related error message in case of member access
- d-bugmail puremagic.com (28/28) Jan 01 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9256
- d-bugmail puremagic.com (14/14) Jan 01 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9256
http://d.puremagic.com/issues/show_bug.cgi?id=9256 Summary: A purity-related error message in case of member access Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: diagnostic Severity: minor Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: bearophile_hugs eml.cc struct Foo { int x; } void main() pure { int y = Foo.x; } With DMD 2.061 gives this error message: test.d(5): Error: pure nested function 'main' cannot access mutable data 'x' But I think a better error message should be something like: test.d(5): Error: need 'this' to access member x -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 01 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9256 See also: struct Foo { int x; } void main() pure { int y = Foo.x.max; } test3.d(5): Error: pure nested function 'main' cannot access mutable data 'x' But I think this problem is elsewhere in Bugzilla. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 01 2013