tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git] / gcc / testsuite / gfortran.dg / gomp / omp_do_concurrent.f90
blob83204791d95373a47718dd11838965d58fc8bc72
1 ! { dg-do compile }
2 ! { dg-options "-fopenmp" }
4 ! PR fortran/60127
6 ! OpenMP 4.0 doesn't permit DO CONCURRENT (yet)
9 !$omp do
10 do concurrent(i=1:5) ! { dg-error "OMP DO cannot be a DO CONCURRENT loop" }
11 print *, 'Hello'
12 end do
13 end