llvm-project/flang/test/Semantics/altreturn01.f90

10 lines
215 B
Fortran

! Check calls with alt returns
CALL TEST (N, *100, *200 )
PRINT *,'Normal return'
STOP
100 PRINT *,'First alternate return'
STOP
200 PRINT *,'Secondnd alternate return'
END