blob: a4649eb5ffc941f15b80204f9afe37f7c135331c [file] [log] [blame]
// { dg-do compile }
// { dg-options "-fgnu-tm -O -fno-implicit-constexpr" }
class shared_count
{
public:
volatile int j;
shared_count() : j(0) { }
};
shared_count * c;
int main()
{
__transaction_atomic {
shared_count sc;
}
return 0;
}