xref: /llvm-project/flang/test/Parser/elseif-then.f90 (revision 0061e681a3296ac9016891729e03e38ebb235bdc)
1! RUN: not %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s
2! CHECK-NOT: expected '=>'
3! CHECK: error: expected 'THEN'
4if (.false.) then
5else if (.false.)
6else
7end if
8end
9