view test/structs7.d @ 238:346cba22f4b8 trunk

[svn r255] added dstress results for [254]
author ChristianK
date Sun, 08 Jun 2008 21:23:09 +0200
parents 5071469303d4
children
line wrap: on
line source

module structs7;

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

void main()
{
    S s = void;
    int i = s.i;
    long l = s.l;
}