annotate run/b/bug_optimize_294_F.d @ 1321:e6887749b811

cleaned up remaining puremagic @uri@s
author thomask
date Sun, 31 Dec 2006 20:00:02 +0000
parents bcb1327a0f5d
children 3936e3440370
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1245
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
1 // $HeadURL$
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
2 // $Date$
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
3 // $Author$
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
4
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
5 // @author@ Boris Kolar <boris.kolar@globera.com>
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
6 // @date@ 2006-11-29
1321
e6887749b811 cleaned up remaining puremagic @uri@s
thomask
parents: 1245
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=618
1245
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
8 // @desc@ [Issue 618] New: The following program crashes dmd.exe 0.175
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
9
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
10 module dstress.run.b.bug_optimize_294_F;
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
11
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
12 struct Foo(T) {
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
13 int dummy;
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
14 }
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
15
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
16 int main() {
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
17 if ((Foo!(char)).init == (Foo!(char)).init){
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
18 return 1;
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
19 }
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
20 return 0;
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
21 }