[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / tls-4.C
blobf6c039e3dbe8d817fbb51351f27a85d53af486eb
1 // { dg-do compile }
2 // { dg-require-effective-target tls }
4 #define thr threadprivate
6 struct S
8   static int s;
9 };
10 struct T : public S
12   static int t;
13 #pragma omp thr (s)     // { dg-error "directive not in" }
16 #pragma omp thr (T::t)  // { dg-error "directive not in" }