annotate run/abstract_10.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 35a1df98caf1
children d3a3e0c251d8
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
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 311
diff changeset
8 // @uri@ nntp://news.digitalmars.com/digitalmars.D.bugs/1940
311
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
9
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
10 module dstress.run.abstract_10;
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
11
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
12 class A{
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
13 abstract class B{
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
14 }
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
15 }
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
16
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
17 int main(){
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
18 A a = new A();
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
19 return 0;
35a1df98caf1 updated abstract tests to dmd-118
thomask
parents:
diff changeset
20 }