Sign in
ara-mdk
/
platform
/
ndk
/
887d3eb6adaa18a3fa45290cf7fcabfcb223512d
/
.
/
tests
/
device
/
test-stlport_shared-exception
/
jni
/
synth2.cpp
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
;
}