Sign in
gnu
/
gcc
/
ff4bf326d03e750a8d4905ea49425fe7d15a04b8
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr81659.C
blob: 074099be6fc7060d8d9451d0c3ce40ce99c2b63d [
file
]
// { dg-do compile }
void
a
(
int
b
)
{
if
(
b
)
throw
;
try
{
a
(
3
);
}
catch
(
int
)
{
}
catch
(
int
)
// { dg-warning "will be caught by earlier handler" }
{
}
}