aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/ice9663.d
blob: 8ea26d7f9cab4751325905db15ad5024046f16bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// REQUIRED_ARGS: -wi

void main()
{
    int[1] a;
    int[] b = [1];

    a = 1;

    b[] = a;

    b = a;
}