PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gfortran.dg / goacc / cache-2.f95
blobbe8187885563ef472d9e134d8404addac903ba89
1 ! OpenACC cache directive: invalid usage.
2 ! { dg-additional-options "-std=f2008" }
4 program test
5 implicit none
6 integer :: i, d(10), e(5,13)
8 do concurrent (i=1:5)
9 !$acc cache (d) ! { dg-error "" "TODO" { xfail *-*-* } }
10 !$acc cache (e) ! { dg-error "" "TODO" { xfail *-*-* } }
11 enddo
12 end