summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/imports/pr106555.d
blob: 0d3ab6bb74722a677c9e7e46fe804c03b06df9ce (plain)
1
2
3
4
5
6
7
8
9
10
module imports.pr106555;
struct S106555
{
    int[] f106555;
    int max106555;
    this(int)
    {
        f106555.length = max106555;
    }
}