* semantics.c (finish_omp_threadprivate): Call complete_type.
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / tls-template1.C
blob5865ce3d98ed6dd959c1b744a52275e3c9e06610
1 // { dg-require-effective-target tls }
3 template <class T> struct B
5   T t;
6 };
8 class A {
9     static B<int> b;
10 #pragma omp threadprivate(b)
13 B<int> A::b;