blob: 5865ce3d98ed6dd959c1b744a52275e3c9e06610 [file] [log] [blame]
// { dg-require-effective-target tls }
template <class T> struct B
{
T t;
};
class A {
static B<int> b;
#pragma omp threadprivate(b)
};
B<int> A::b;