view tests/mini/union3.d @ 362:faa03bf92f0d trunk

[svn r383] Add explanations to dstress result table.
author ChristianK
date Mon, 14 Jul 2008 21:03:15 +0200
parents 1bb99290e03a
children 44f08170f4ef
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]);
}