blob: 7693a729e26088352db844226a1028d960893131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module parent
implicit none
interface
! Test Fortran 2008 "module function" syntax
module function child_function() result(child_stuff)
logical :: child_stuff
end function
! Test Fortran 2008 "module subroutine" syntax
module subroutine grandchild_subroutine()
end subroutine
end interface
end module parent
|