annotate compile/c/class_24_A.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents a4b91ec616fa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1026
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
1 // $HeadURL$
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
2 // $Date$
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
3 // $Author$
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
4
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
5 // @author@ <h3r3tic@mat.uni.torun.pl>
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
6 // @date@ 2006-05-05
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1026
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=128
1026
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
8
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
9 module dstress.compile.c.class_24_A;
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
10
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
11 class Foo {
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
12 }
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
13
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
14 typeof(new () class Foo{}) x;
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
15
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
16 void main(){
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
17 Foo y;
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
18 y = x;
a4b91ec616fa DMD crash with static if and anonymous classes
thomask
parents:
diff changeset
19 }