1! RUN: %python %S/test_errors.py %s %flang_fc1 2! Functions cannot use alt return 3 4REAL FUNCTION altreturn01(X) 5! ERROR: RETURN with expression is only allowed in SUBROUTINE subprogram 6 RETURN 1 7END 8