digitalmars.D.announce - DMD 0.171 release
- Walter Bright <newshound digitalmars.com> Oct 18 2006
- Tom S <h3r3tic remove.mat.uni.torun.pl> Oct 18 2006
Hopefully fixes 0.170 build breaks. http://www.digitalmars.com/d/changelog.html
Oct 18 2006
Walter Bright wrote:Hopefully fixes 0.170 build breaks. http://www.digitalmars.com/d/changelog.html
It's still there: ---- interface Foo { void foo(); } class Bar : Foo { final void foo() { } } class Baz : Bar { } void main() { new Baz; } ---- Compiles fine with .169, but produces *two* identical error messages in .171 -- Tomasz Stachowiak
Oct 18 2006








Tom S <h3r3tic remove.mat.uni.torun.pl>