[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / tpl-atomic-2.C
blobc27f20193971462b8f55ad3c5a2fb5d62a7d44c4
1 // { dg-do compile }
3 struct S { int x; } s;
5 // Make sure we detect errors on non-type-dependent things
6 // even when the templates are never instantiated.
7 template<typename T> void f1()
9   #pragma omp atomic
10   s += 1;               // { dg-error "invalid" }
13 template<typename T> void f2(float *f)
15   #pragma omp atomic
16   *f |= 1;              // { dg-error "invalid|evaluation" }
19 // Here the rhs is dependent, but not type dependent.
20 template<typename T> void f3(float *f)
22   #pragma omp atomic
23   *f |= sizeof (T);     // { dg-error "invalid|evaluation" }
26 // And the converse, no error here because we're never fed a T.
27 template<typename T> void f4(T *t)
29   #pragma omp atomic
30   *t += 1;
33 // Here we'll let it go, because the rhs is type dependent and
34 // we can't properly instantiate the statement, and we do most
35 // of the semantic analysis concurrent with that.
36 template<typename T> void f5(float *f)
38   #pragma omp atomic
39   *f |= (T)sizeof(T);   // { dg-error "invalid|evaluation" "" { xfail *-*-* } }