October 18, 2006
Hopefully fixes 0.170 build breaks.

http://www.digitalmars.com/d/changelog.html
October 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