15 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenacc2 3subroutine test_sentinel()4! Test for error since we currently do not have an OpenACC module upstream.5!ERROR: Cannot parse module file for module 'openacc': Source file 'openacc.mod' was not found6 !@acc use openacc7 integer :: i8 9 !$acc parallel loop10 do i = 1, 1011 end do12 !$acc end parallel13 14end subroutine15