repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
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
blob
7b83a264413c060bf16ac57482e1cfe726b98b3b
1
// { dg-do compile }
2
struct A
3
{
4
A(int);
5
};
6
7
A::A(int i)
8
{
9
int x[1][i];
10
x[0][0] = 0;
11
}