comparison test/union4.d @ 76:9e1bd80a7e98 trunk

[svn r80] Fixed union literals
author lindquist
date Wed, 31 Oct 2007 07:24:02 +0100
parents
children
comparison
equal deleted inserted replaced
75:ab8f5ec40a14 76:9e1bd80a7e98
1 module union4;
2
3 pragma(LLVM_internal, "notypeinfo")
4 union U {
5 struct { float x,y,z; }
6 float[3] xyz;
7 }
8
9 void main() {
10 const float[3] a = [1f,2,3];
11 U u = U(1,2,3);
12 assert(u.xyz == a);
13 assert(u.x == 1);
14 assert(u.y == 2);
15 assert(u.z == 3);
16 }