summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/goacc/cache-1.f95
blob: 746cf02f688f66a28b311d614dad217893d6da8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do compile }
! { dg-additional-options "-std=f2008" }

program test
  implicit none
  integer :: i, d(10)

  do concurrent (i=1:5)
    !$acc cache (d)
  enddo
end
! { dg-prune-output "unimplemented" }