[LoopReroll] Add an extra defensive check to avoid SCEV assertion.
[llvm-project.git] / flang / test / Semantics / if_stmt02.f90
blobcb9abe58d1c6304f05cd87bd7b556e3cf3706867
1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
2 ! REQUIRES: shell
3 !ERROR: IF statement is not allowed in IF statement
4 IF (A > 0.0) IF (B < 0.0) A = LOG (A)
5 END