Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / altreturn01.f90
blob85a133d826764151d90505916ad1c55540dccde5
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! Check calls with alt returns
4 CALL TEST (N, *100, *200 )
5 PRINT *,'Normal return'
6 STOP
7 100 PRINT *,'First alternate return'
8 STOP
9 200 PRINT *,'Secondnd alternate return'
10 END