annotate compile/interface_09.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents 62c9b99c3a16
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
1 // $HeadURL$
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
2 // $Date$
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
3 // $Author$
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
4
358
8a2ff09d62cb dif. fixes 1
thomask
parents: 209
diff changeset
5 // @author@ Miguel Ferreira Simões
209
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
6 // @date@ 2004-12-23
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
7 // @uri@ news:cqe7j0$2fl3$1@digitaldaemon.com
1385
62c9b99c3a16 meta cleanup
thomask
parents: 358
diff changeset
8 // @uri@ nntp://digitalmars.com/digitalmars.D/14003
209
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
9
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
10 module dstress.compile.interface_09;
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
11
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
12 interface ITest{
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
13 static int dummy();
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
14 }
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
15
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
16 class Test : ITest{
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
17 static int dummy(){
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
18 return 5;
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
19 }
e636fe6f12d6 static functions in interfaces
thomask
parents:
diff changeset
20 }