bolt/deps/llvm-18.1.8/flang/test/Semantics/Inputs/getsymbols02-b.f90
2025-02-14 19:21:04 +01:00

12 lines
201 B
Fortran

module mm2b
use mm2a
implicit none
private
public :: callget5
contains
function callget5() result(ret)
implicit none
INTEGER :: ret
ret = get5()
end function callget5
end module mm2b