annotate nocompile/i/interface_25_A.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 51b79a31a82a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1202
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
1 // $HeadURL$
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
2 // $Date$
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
3 // $Author$
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
4
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
5 // @author@ david <davidl@126.com>
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
6 // @date@ 2006-10-09
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1202
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=414
1202
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
8 // @desc@ [Issue 414] New: interfaces shouldn't be able to inheit from classes
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
9
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 19
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
11
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
12 module dstress.nocompile.i.interface_25_A;
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
13
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
14 class A{
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
15 void foo(){
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
16 }
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
17 }
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
18
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
19 interface I : A{
51b79a31a82a [Issue 414] New: interfaces shouldn't be able to inheit from classes
thomask
parents:
diff changeset
20 }