aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/gomp/pr45595.f90
blob: ab10c3f952efeb1785e495f6b8b26fb017761980 (plain)
1
2
3
4
5
6
7
8
9
10
! PR fortran/45595
! { dg-do compile }
! { dg-options "-fopenmp" }

subroutine foo(l,u)
  integer :: k,l,u
  !$omp parallel do shared(l,u) collapse(3)	! { dg-error "not enough DO loops" }
    do k = l,u
    end do
end subroutine