comparison run/s/struct_initialization_13_A.d @ 1565:6424a05d3113

r8718@birke: tk | 2007-09-30 10:55:49 +0200 [Issue 1523] struct literals not work with typedef <pop.atry@gmail.com> 2007-09-21 http://d.puremagic.com/issues/show_bug.cgi?id=1523
author thomask
date Sun, 30 Sep 2007 09:47:31 +0000
parents
children
comparison
equal deleted inserted replaced
1564:1d41f2132ef4 1565:6424a05d3113
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ <pop.atry@gmail.com>
6 // @date@ 2007-09-21
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1523
8 // @desc@ [Issue 1523] struct literals not work with typedef
9
10 module dstress.run.s.struct_initialization_13_A;
11
12 struct BaseStruct {
13 int n;
14 char c;
15 }
16
17 typedef BaseStruct MyStruct;
18
19 int myFunction(MyStruct m){
20 return m.n + m.c * 2;
21 }
22
23 int main() {
24 if(7 != myFunction(MyStruct(3, '\x02'))){
25 assert(0);
26 }
27
28 return 0;
29 }