summaryrefslogtreecommitdiffstats
path: root/Tests/FortranModules/Submodules/child.f90
blob: 838ab612919033ecb68e1e3236714e0dc13f6068 (plain)
1
2
3
4
5
6
7
8
9
10
! Test the notation for a 1st-generation direct
! descendant of a parent module
submodule ( parent ) child
  implicit none
contains
  module function child_function() result(child_stuff)
    logical :: child_stuff
    child_stuff=.true.
  end function
end submodule child