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