Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / if_stmt02.f90
blob46c7fcd9f594a00b43eabe3e27019526d77cdbcd
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 !ERROR: IF statement is not allowed in IF statement
3 IF (A > 0.0) IF (B < 0.0) A = LOG (A)
4 END