11 lines
272 B
Fortran
Raw Normal View History

2018-08-09 18:06:22 +02:00
! 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