view test/union1.d @ 76:9e1bd80a7e98 trunk

[svn r80] Fixed union literals
author lindquist
date Wed, 31 Oct 2007 07:24:02 +0100
parents b706170e24a9
children
line wrap: on
line source

module union1;

pragma(LLVM_internal, "notypeinfo")
union U
{
    float f;
    int i;
}

void main()
{
    float f = 2;
    U u = U(f);
    assert(u.i == *cast(int*)&f);
}