view test/bug49.d @ 104:4d1e9eb001e0 trunk

[svn r108] Now basic suppport for complex types. =,+,-,*,/ are supported.
author lindquist
date Mon, 19 Nov 2007 02:58:58 +0100
parents fd32135dca3e
children
line wrap: on
line source

module bug49;

pragma(LLVM_internal, "notypeinfo")
struct S
{
    int i;
    long l;
}

void main()
{
    S s;
    s.i = 0x__FFFF_FF00;
    s.l = 0xFF00FF_FF00;
    s.i &= s.l;
}