view test/bug18.d @ 198:17dc52256c58 trunk

[svn r214] test results for [210]
author ChristianK
date Mon, 12 May 2008 20:28:44 +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);
}