annotate run/super_08.d @ 190:f29443c7054c

1) super() 2) "=" -> ":=" in the Makefile Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn> 200-12-10 news:sr8p82-lu3.ln1@kuehne.cn nntp://digitalmars.com/digitalmars.D.bugs/2528
author thomask
date Fri, 10 Dec 2004 19:13:38 +0000
parents
children 7b78583d1f80
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
190
f29443c7054c 1) super()
thomask
parents:
diff changeset
1 // $HeadURL$
f29443c7054c 1) super()
thomask
parents:
diff changeset
2 // $Date$
f29443c7054c 1) super()
thomask
parents:
diff changeset
3 // $Base$
f29443c7054c 1) super()
thomask
parents:
diff changeset
4
f29443c7054c 1) super()
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
f29443c7054c 1) super()
thomask
parents:
diff changeset
6 // @date@ 200-12-10
f29443c7054c 1) super()
thomask
parents:
diff changeset
7 // @uri@ news:sr8p82-lu3.ln1@kuehne.cn
f29443c7054c 1) super()
thomask
parents:
diff changeset
8 // @url@ nntp://digitalmars.com/digitalmars.D.bugs/2528
f29443c7054c 1) super()
thomask
parents:
diff changeset
9
f29443c7054c 1) super()
thomask
parents:
diff changeset
10 module dstress.run.super_08;
f29443c7054c 1) super()
thomask
parents:
diff changeset
11
f29443c7054c 1) super()
thomask
parents:
diff changeset
12 int dummy;
f29443c7054c 1) super()
thomask
parents:
diff changeset
13
f29443c7054c 1) super()
thomask
parents:
diff changeset
14 class Parent{
f29443c7054c 1) super()
thomask
parents:
diff changeset
15 this(){
f29443c7054c 1) super()
thomask
parents:
diff changeset
16 dummy++;
f29443c7054c 1) super()
thomask
parents:
diff changeset
17 }
f29443c7054c 1) super()
thomask
parents:
diff changeset
18 }
f29443c7054c 1) super()
thomask
parents:
diff changeset
19
f29443c7054c 1) super()
thomask
parents:
diff changeset
20 class Child{
f29443c7054c 1) super()
thomask
parents:
diff changeset
21 this(){
f29443c7054c 1) super()
thomask
parents:
diff changeset
22 super();
f29443c7054c 1) super()
thomask
parents:
diff changeset
23 }
f29443c7054c 1) super()
thomask
parents:
diff changeset
24 }
f29443c7054c 1) super()
thomask
parents:
diff changeset
25
f29443c7054c 1) super()
thomask
parents:
diff changeset
26 int main(){
f29443c7054c 1) super()
thomask
parents:
diff changeset
27 Child o = new Child();
f29443c7054c 1) super()
thomask
parents:
diff changeset
28 return dummy-1;
f29443c7054c 1) super()
thomask
parents:
diff changeset
29 }