aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/pr116373.d
blob: b58863bacf291c6373d500a8f05088faa41733ef (plain)
1
2
3
4
5
6
7
8
// { dg-do compile }
int[] x;

void foo (int[] y = x[]) {}

void main () {
    foo();
}