annotate nocompile/e/expression_4154_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents c99e8aac0e0c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1269
c99e8aac0e0c partial review
thomask
parents:
diff changeset
1 // $HeadURL$
c99e8aac0e0c partial review
thomask
parents:
diff changeset
2 // $Date$
c99e8aac0e0c partial review
thomask
parents:
diff changeset
3 // $Author$
c99e8aac0e0c partial review
thomask
parents:
diff changeset
4
c99e8aac0e0c partial review
thomask
parents:
diff changeset
5 // @author@ Kazuhiro Inaba <kinaba@is.s.u-tokyo.ac.jp>
c99e8aac0e0c partial review
thomask
parents:
diff changeset
6 // @date@ 2006-12-03
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1269
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=640
1269
c99e8aac0e0c partial review
thomask
parents:
diff changeset
8 // @desc@ [Issue 640] New: Strage error messages around structInstance.init
c99e8aac0e0c partial review
thomask
parents:
diff changeset
9
c99e8aac0e0c partial review
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 19
c99e8aac0e0c partial review
thomask
parents:
diff changeset
11
c99e8aac0e0c partial review
thomask
parents:
diff changeset
12 module dstress.nocompile.e.expression_4154_A;
c99e8aac0e0c partial review
thomask
parents:
diff changeset
13
c99e8aac0e0c partial review
thomask
parents:
diff changeset
14 struct S {
c99e8aac0e0c partial review
thomask
parents:
diff changeset
15 int i;
c99e8aac0e0c partial review
thomask
parents:
diff changeset
16 }
c99e8aac0e0c partial review
thomask
parents:
diff changeset
17
c99e8aac0e0c partial review
thomask
parents:
diff changeset
18 void foo(){
c99e8aac0e0c partial review
thomask
parents:
diff changeset
19 S s = {0};
c99e8aac0e0c partial review
thomask
parents:
diff changeset
20
c99e8aac0e0c partial review
thomask
parents:
diff changeset
21 s = s.init;
c99e8aac0e0c partial review
thomask
parents:
diff changeset
22 }
c99e8aac0e0c partial review
thomask
parents:
diff changeset
23