view test/structs.d @ 216:3d022aa016ae trunk

[svn r232] Added dstress test results for rev [231] .
author lindquist
date Tue, 03 Jun 2008 22:32:59 +0200
parents c53b6e3fe49a
children
line wrap: on
line source

struct S
{
    int func()
    {
        return 42;
    }
}

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