bolt/deps/llvm-18.1.8/flang/test/Semantics/Inputs/getsymbols02-b.f90

13 lines
201 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
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