changeset 1198:f272d893dd3e

[Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl> 2006-10-17 news:bug-440-3@http.d.puremagic.com/issues/
author thomask
date Sat, 21 Oct 2006 13:27:44 +0000
parents 0e1bf1565db1
children 2341845c9184
files run/f/final_12_A.d run/f/final_12_B.d
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 {
--- 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 {