[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Semantics / altreturn04.f90
blob9ed9a7d967541ed1e52e4f44a0df5f55ee6ea6a9
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! Functions cannot use alt return
4 REAL FUNCTION altreturn01(X)
5 ! ERROR: RETURN with expression is only allowed in SUBROUTINE subprogram
6 RETURN 1
7 END