xref: /llvm-project/flang/test/Semantics/Inputs/getsymbols02-b.f90 (revision bf57fc1c8ea3d8eaf2e9974691012767ac71a73e)
1module mm2b
2use mm2a
3implicit none
4private
5  public :: callget5
6contains
7  function callget5() result(ret)
8    implicit none
9    INTEGER :: ret
10    ret = get5()
11  end function callget5
12end module mm2b
13