annotate nocompile/super_06.d @ 756:9a121126b077

major "Torture" review
author thomask
date Sat, 03 Dec 2005 22:19:07 +0000
parents ec6d35cccfb5
children aaf6f2e639e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
1 // $HeadURL$
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
2 // $Date$
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
3 // $Base$
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
4
756
9a121126b077 major "Torture" review
thomask
parents: 435
diff changeset
5 // __DSTRESS_ELINE__ 10
374
f87ba6507260 added missing meta-data
thomask
parents: 332
diff changeset
6
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
7 module dstress.nocompile.super_06;
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
8
392
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
9 class Parent{
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
10 this(int i){
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
11 }
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
12 }
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
13
392
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
14 class Child : Parent{
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
15 this(char[] c){
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
16 }
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
17 }