annotate nocompile/t/this_16_D.d @ 1563:17cb36e8f9ae

r8716@birke: tk | 2007-09-30 00:19:01 +0200 [Issue 1533] Crash unknown symbol with std.signals <regan@netmail.co.nz> 2007-09-07 http://d.puremagic.com/issues/show_bug.cgi?id=1533
author thomask
date Sun, 30 Sep 2007 09:45:13 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1563
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
1 // $HeadURL$
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
2 // $Date$
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
3 // $Author$
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
4
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
5 // @author@ <regan@netmail.co.nz>
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
6 // @date@ 2007-09-07
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1533
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
8 // @desc@ [Issue 1533] Crash unknown symbol with std.signals
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
9
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 21
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
11
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
12 module dstress.nocompile.t.this_16_D;
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
13
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
14 template T(){
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
15 this(){
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
16 }
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
17 }
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
18
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
19 class C{
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
20 void foo(){
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
21 bar();
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
22 }
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
23 mixin T!() t;
17cb36e8f9ae r8716@birke: tk | 2007-09-30 00:19:01 +0200
thomask
parents:
diff changeset
24 }