Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
array2.C
blob: fcea96714c8e879349130e603333820b7c7ba917 [
file
] [
log
] [
blame
]
// { dg-do run }
int
i
;
struct
S
{
S
()
{
++
i
;
};
S
(
int
)
{
};
};
int
main
()
{
S s
[
3
][
3
]
=
{
2
};
if
(
i
!=
8
)
return
1
;
}