view test/union4.d @ 100:5071469303d4 trunk

[svn r104] TONS OF FIXES. Split up declaration, constant initializer gen and definition for globals, structs, classes and functions. Improved ClassInfo support (not complete), not in vtable yet. Fixed a bunch of forward reference problems. Much more. Major commit! :)
author lindquist
date Fri, 16 Nov 2007 08:21:47 +0100
parents 9e1bd80a7e98
children
line wrap: on
line source

module union4;

pragma(LLVM_internal, "notypeinfo")
union U {
    struct { float x,y,z; }
    float[3] xyz;
}

void main() {
    const float[3] a = [1f,2,3];
    U u = U(1,2,3);
    assert(u.xyz == a);
    assert(u.x == 1);
    assert(u.y == 2);
    assert(u.z == 3);
}