# HG changeset patch # User thomask # Date 1161437264 0 # Node ID f272d893dd3eb48803462346475a2a0e7136e63e # Parent 0e1bf1565db102be70dee77e417b753ac488cfab [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones Tomasz Stachowiak 2006-10-17 news:bug-440-3@http.d.puremagic.com/issues/ diff -r 0e1bf1565db1 -r f272d893dd3e run/f/final_12_A.d --- a/run/f/final_12_A.d Sat Oct 21 13:27:35 2006 +0000 +++ b/run/f/final_12_A.d Sat Oct 21 13:27:44 2006 +0000 @@ -12,7 +12,7 @@ int status; interface I { - void foo(); + int foo(); } class C : I { diff -r 0e1bf1565db1 -r f272d893dd3e run/f/final_12_B.d --- a/run/f/final_12_B.d Sat Oct 21 13:27:35 2006 +0000 +++ b/run/f/final_12_B.d Sat Oct 21 13:27:44 2006 +0000 @@ -12,7 +12,7 @@ int status; interface I { - void foo(); + int foo(); } class C : I {