Sign in
gnu
/
gcc
/
730af51196dacf831ebcf8dbbfe0cab4c52c5ee3
/
.
/
libitm
/
testsuite
/
libitm.c++
/
eh-2.C
blob: 156121142e782a8c8635e35529372be9f04761bf [
file
] [
log
] [
blame
]
// A handler can involve a transaction-safety conversion.
// { dg-do run }
// { dg-options "-fgnu-tm" }
void
g
()
transaction_safe
{}
int
main
()
{
try
{
throw
g
;
}
catch
(
void
(*
p
)())
{
}
}