view test/bug39.d @ 128:e5fe8521bbfa trunk

[svn r132] Added some tests. some will fail at the moment.
author lindquist
date Fri, 30 Nov 2007 17:12:08 +0100
parents d7e764e62462
children
line wrap: on
line source

module bug39;

struct S
{
    long l;
}

void main()
{
    S s;
    s.l = 23;
    void* p = &s;
}