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

11 lines
159 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
module mm2a
implicit none
private
public :: get5
contains
function get5() result(ret)
integer :: ret
ret = 5
end function get5
end module mm2a