annotate nocompile/f/final_12_C.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents ac780878d371
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1204
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
1 // $HeadURL$
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
2 // $Date$
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
3 // $Author$
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
4
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
5 // @author@ Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl>
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
6 // @date@ 2006-10-17
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1204
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=440
1204
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
8 // @desc@ [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
9
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 24
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
11
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
12 module dstress.nocompile.f.final_12_C;
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
13
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
14 interface I {
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
15 void foo();
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
16 }
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
17
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
18 class Parent : I {
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
19 final void foo() {
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
20 }
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
21 }
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
22
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
23 class Child : Parent, I {
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
24 void foo() {
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
25 }
ac780878d371 [Issue 440] New: dmd.170 fails to mark final methods as implementations of abstract ones
thomask
parents:
diff changeset
26 }