2015-07-03 Christophe Lyon <christophe.lyon@linaro.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / goacc / combined_loop.f90
blobb8be649993772ff311505fef45b7777e45a05d56
1 ! { dg-do compile }
3 ! PR fortran/64726
5 subroutine oacc1()
6 implicit none
7 integer :: i
8 integer :: a
9 !$acc parallel loop reduction(+:a) ! { dg-excess-errors "sorry, unimplemented: directive not yet implemented" }
10 do i = 1,5
11 enddo
12 end subroutine oacc1