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

cleaned up remaining puremagic @uri@s
author thomask
date Sun, 31 Dec 2006 20:00:02 +0000
parents c99e8aac0e0c
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: 1269
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_C;
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 }
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 int main() {
1269
c99e8aac0e0c partial review
thomask
parents: 1245
diff changeset
16 if ((Foo!(byte)).init == (Foo!(byte)).init){
1245
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
17 return 1;
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
18 }
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
19 return 0;
bcb1327a0f5d [Issue 618] New: The following program crashes dmd.exe 0.175
thomask
parents:
diff changeset
20 }