view test/union3.d @ 260:d69d4543c441 trunk

[svn r278] Added test results for [277]
author lindquist
date Fri, 13 Jun 2008 07:50:55 +0200
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]);
}