(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
tm/
unsafe2.C
// Transaction-unsafe testcase from TM TS.
// { dg-options -fgnu-tm }

template<class T>
void f(T) transaction_safe;
template<>
void f(bool); // not transaction-safe

void g() transaction_safe
{
  f(42);			// OK
  f(true);			// { dg-error "unsafe" }
}