blob: 9cdbcdf822e770e2d0645dd618a9678aeff3fac0 [file] [log] [blame]
! Ensure that ACC WAIT accept integer arguments.
subroutine foo (wqueue)
implicit none
integer :: wqueue, waitno
integer, parameter :: waitp = 100
!$acc wait (wqueue)
!$acc wait (waitno)
!$acc wait (waitp)
!$acc wait (0)
end subroutine foo