[LoopReroll] Add an extra defensive check to avoid SCEV assertion.
[llvm-project.git] / flang / test / Semantics / altreturn01.f90
blob7257eb1e5551ea6267420af433307a4fd1e4619d
1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
2 ! REQUIRES: shell
3 ! Check calls with alt returns
5 CALL TEST (N, *100, *200 )
6 PRINT *,'Normal return'
7 STOP
8 100 PRINT *,'First alternate return'
9 STOP
10 200 PRINT *,'Secondnd alternate return'
11 END