Sign in
ara-mdk
/
platform
/
ndk
/
f4f10df3fdd08ef9f466d9b54953c1ba3e64827b
/
.
/
tests
/
device
/
test-stlport_static-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
;
}