|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
digitalmars.D.bugs - [Issue 2091] New: D2 final cannot be applied to variable
http://d.puremagic.com/issues/show_bug.cgi?id=2091 Summary: D2 final cannot be applied to variable Product: D Version: 2.013 Platform: PC OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: bugzilla digitalmars.com ReportedBy: gide nwawudu.com The following code compiles on D1 but fails on D2. I think 'final:' is being applied to the whole class. test.d ------ class Bar { } class Foo { final: this() {} Bar getBar() { return b; } private: Bar b; } void main() { } c:\> dmd test.d test.d(11): variable c.Foo.b final cannot be applied to variable -- May 10 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2091 bugzilla digitalmars.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Comment #1 from bugzilla digitalmars.com 2008-05-11 04:25 ------- final with a : applies until the closing } of the declaration block. That covers the declaration of b. The error message is correct. Not a bug. -- May 11 2008
|