view test/union3.d @ 141:8f43f5c43c95 trunk

[svn r145] fixed some x86 problems
author lindquist
date Wed, 23 Jan 2008 12:58:51 +0100
parents b706170e24a9
children
line wrap: on
line source

module union3;

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

void main()
{
    vec3 v;
    assert(&v.y is &v.xyz[1]);
}