xref: /llvm-project/flang/test/Semantics/if_arith01.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2! Check that a basic arithmetic if compiles.
3
4if ( A ) 100, 200, 300
5100 CONTINUE
6200 CONTINUE
7300 CONTINUE
8END
9