Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr41906.C
blob: 321d33aeace98206234b8b092e337da1a570a01d [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-fpermissive -w" } */
/* We aren't interested in the warning, but in the ICE. */
void
foo
();
extern
void
abort
(
void
);
void
bar
()
{
try
{
foo
();
}
catch
(...)
{}
catch
(
int
)
{
abort
();}
}