view tests/mini/bug18.d @ 1323:c74dfdcc5043

Update for LLVM rev > 71348: getTypePaddedSize -> getTypeAllocSize
author Christian Kamm <kamm incasoftware de>
date Sat, 09 May 2009 18:57:00 +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);
}