blob: c8ab1ffd8c707708e3f4d48863462c0acec2af34 [file] [edit]
!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=60
subroutine f00
!ERROR: Must have INTEGER type, but is CHARACTER(KIND=1,LEN=8_8)
!$omp taskgraph graph_id("my graph")
!$omp end taskgraph
end
subroutine f01
!ERROR: At most one GRAPH_ID clause can appear on TASKGRAPH directive
!$omp taskgraph graph_id(1) graph_id(2)
!$omp end taskgraph
end