view test/bug18.d @ 60:66a6841bbe43 trunk

[svn r64] ...
author lindquist
date Thu, 25 Oct 2007 09:16:05 +0200
parents 4d171915a77b
children
line wrap: on
line source

module bug18;

struct S {
    int[9] i;
}

void main()
{
    int[9] i;
    auto s = S(i);
}