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)()) { }
}