annotate nocompile/t/this_15_A.d @ 1443:b7d5fdb4245d

r7391@birke: tk | 2007-03-29 16:16:23 +0200 [Issue 951] Missing line number: no constructor provided for a class derived from a class with no default constructor Stewart Gordon <smjg@iname.com> 2007-02-11 http://d.puremagic.com/issues/show_bug.cgi?id=951
author thomask
date Sat, 31 Mar 2007 08:26:38 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1443
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
1 // $HeadURL$
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
2 // $Date$
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
3 // $Author$
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
4
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
5 // @author@ Stewart Gordon <smjg@iname.com>
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
6 // @date@ 2007-02-11
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=951
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
8 // @desc@ [Issue 951] Missing line number: no constructor provided for a class derived from a class with no default constructor
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
9
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 19
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
11
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
12 module dstress.nocompile.t.this_15_A;
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
13
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
14 class Base {
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
15 this(int x) {
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
16 }
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
17 }
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
18
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
19 class Derived : Base {
b7d5fdb4245d r7391@birke: tk | 2007-03-29 16:16:23 +0200
thomask
parents:
diff changeset
20 }