c++/coroutines: correct passing *this to promise type [PR104981]
[official-gcc.git] / gcc / testsuite / gfortran.dg / gomp / pr107214-6.f90
blob0a1270645518ba4cac5a9dbb68a17d05ba81ee0d
1 ! { dg-do compile }
3 integer :: x
5 !$omp target map(x) private(x) ! { dg-error "Symbol 'x' present on multiple clauses" }
6 x = x + 1
7 !$omp end target
9 end