Sign in
ara-mdk
/
platform
/
ndk
/
887d3eb6adaa18a3fa45290cf7fcabfcb223512d
/
.
/
tests
/
device
/
test-stlport_shared-exception
/
jni
/
tmpl1.cpp
blob: 985fcae6bc6b0b4f0ef16977e94f1325c5a59499 [
file
] [
log
] [
blame
]
// { dg-do run }
template
<
class
T
>
void
f
()
throw
(
T
)
{
throw
7
;
}
int
main
()
{
try
{
f
<int>
();
}
catch
(...)
{
return
0
;
}
}