annotate nocompile/abstract_08.d @ 452:8c1ae5dd51b0

fixed test cases(names)
author thomask
date Tue, 19 Apr 2005 11:40:22 +0000
parents 1f6cf5ccfbc9
children 9a121126b077
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
311
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
1 // $HeadURL$
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
2 // $Date$
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
3 // $Author$
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
4
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
5 // @author@ Stewart Gordon
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
6 // @date@ 2004-09-24
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
7 // @uri@ news:cj0qf6$2u2v$1@digitaldaemon.com
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
8 // @url@ nntp://news.digitalmars.com/digitalmars.D.bugs/1940
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
9
452
8c1ae5dd51b0 fixed test cases(names)
thomask
parents: 338
diff changeset
10 // __DSTRESS__ELINE__ 19
338
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 311
diff changeset
11
311
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
12 module dstress.nocompile.abstract_08;
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
13
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
14 class A{
452
8c1ae5dd51b0 fixed test cases(names)
thomask
parents: 338
diff changeset
15 abstract void test();
311
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
16 }
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
17
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
18 int main(){
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
19 A a = new A();
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
20 return 0;
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
21 }