Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
eh
/
synth2.C
blob: 2da814db9d632a24426ccf6c550c2eb602fce221 [
file
] [
log
] [
blame
]
// PR c++/24580
// { dg-do run }
struct
vbase
{};
struct
foo
:
virtual
vbase
{
foo
()
{
throw
"exception in foo ctor"
;
}
};
struct
bar
:
public
foo
{};
int
main
()
{
try
{
bar a
;
}
catch
(
...
)
{
}
return
0
;
}