llvm-project/flang/test/Semantics/Inputs/getsymbols02-b.f90

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
201 B
Fortran
Raw Normal View History

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