view test/bug49.d @ 322:1aaf6ff7f685 trunk

[svn r343] Move object.di used for running dstress into separate directory.
author ChristianK
date Wed, 09 Jul 2008 17:02:55 +0200
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;
}