view test/union3.d @ 74:eb379601d445 trunk

[svn r78] Removed the useless pragmas
author lindquist
date Wed, 31 Oct 2007 04:05:38 +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]);
}