bolt/deps/llvm-18.1.8/flang/test/Parser/missing-then.f90

9 lines
177 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
! RUN: not %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s
!CHECK: expected 'THEN'
!CHECK-NOT: expected 'PAUSE'
if (.TRUE.)
!CHECK: expected 'THEN'
else if (.FALSE.)
end if
end