Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
eh
/
dead1.C
blob: 88ae92264d05fc1baf790bc06a3910f7e8d3436e [
file
] [
log
] [
blame
]
// PR 6320
// Rechained the MUST_NOT_THROW region in the wrong order wrt the
// TRY/CATCH while removing them and got confused.
// { dg-do compile }
struct
S
{
~
S
();
};
void
foo
()
{
try
{
return
;
}
catch
(
int
)
{
}
catch
(...)
{
S s
;
}
}