Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
array1.C
blob: 1907c42526e6563cf8ce7a6b287edfa2d6e6d677 [
file
] [
log
] [
blame
]
// { dg-do run }
int
i
;
struct
S
{
S
(
int
)
{
++
i
;
if
(
i
==
3
)
throw
3
;
};
S
()
{}
~
S
()
{
--
i
;
}
};
int
main
()
{
try
{
S s
[
5
]
=
{
0
,
1
,
2
,
3
,
4
};
}
catch
(...)
{
}
if
(
i
!=
1
)
return
1
;
}