annotate nocompile/super_06.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents aaf6f2e639e9
children
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
980
aaf6f2e639e9 repository review
thomask
parents: 756
diff changeset
5 // __DSTRESS_ELINE__ 15
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 }