annotate nocompile/super_06.d @ 1593:a2c2122f2f66

Remove error line information for simple tests that may legitimately have another line referenced in the error message.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 17:30:16 +0200
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 }