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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
init10.C
blob
7fd07fa895591eda49680870a67ee14aa52b88fa
1
// { dg-do run }
2
int i;
3
4
struct D {
5
D () {
6
i++;
7
}
8
};
9
10
struct C {
11
C() {}
12
13
D d[1];
14
};
15
16
17
int main ()
18
{
19
C c;
20
21
if (i != 1)
22
return 1;
23
}