view test/bug39.d @ 240:0db62b770a49 trunk

[svn r257] Fixed: array .sort and .reverse runtime code was incorrect. Fixed: most runtime calls did not get correct param attrs.
author lindquist
date Mon, 09 Jun 2008 00:01:10 +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;
}