Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr62127.C
blob7b83a264413c060bf16ac57482e1cfe726b98b3b
1 // { dg-do compile }
2 struct A
4   A(int);
5 };
7 A::A(int i)
9   int x[1][i];
10   x[0][0] = 0;