xref: /llvm-project/flang/test/Semantics/altreturn01.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2! Check calls with alt returns
3
4       CALL TEST (N, *100, *200 )
5       PRINT *,'Normal return'
6       STOP
7100    PRINT *,'First alternate return'
8       STOP
9200    PRINT *,'Secondnd alternate return'
10       END
11