comparison tests/mini/union4.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/union4.d@9e1bd80a7e98
children 44f08170f4ef
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
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 }