view tests/mini/bug18.d @ 1282:680b4df0ea36

Commit workaround for TypeFunction comparing issue.
author Christian Kamm <kamm incasoftware de>
date Thu, 30 Apr 2009 23:16:21 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug18;

struct S {
    int[9] i;
}

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