view test/bug39.d @ 257:4234b014a4f2 trunk

[svn r275] improved makewebstatistics
author ChristianK
date Thu, 12 Jun 2008 18:40:47 +0200
parents d7e764e62462
children
line wrap: on
line source

module bug39;

struct S
{
    long l;
}

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