bolt/deps/llvm-18.1.8/flang/test/Parser/unmatched-parens.f90
2025-02-14 19:21:04 +01:00

8 lines
131 B
Fortran

! RUN: not %flang_fc1 -E %s 2>&1 | FileCheck %s
do i = 1,10
! CHECK: Unmatched '('
if (i != 0) then
exit
endif
enddo
end