xref: /llvm-project/flang/test/Parser/missing-then.f90 (revision 60b673023f54e899c727e32414fd89b646a147e4)
1! RUN: not %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s
2!CHECK: expected 'THEN'
3!CHECK-NOT: expected 'PAUSE'
4if (.TRUE.)
5!CHECK: expected 'THEN'
6else if (.FALSE.)
7end if
8end
9