Files
CMake/Tests/FortranModules/Submodules/greatgrandchild.f90
Brad King b1f95e5b14 Fortran: Extend submodule test with great-grandchild
Name the module using CamelCase to test lower-case file name conversion.
Also add coverage of existing "sibling" module.
2018-04-20 10:57:32 -04:00

9 lines
276 B
Fortran

! Test the notation for an Nth-generation descendant
! for N>1, which necessitates the colon.
submodule ( parent : grandchild ) GreatGrandChild
contains
module subroutine GreatGrandChild_subroutine()
print *,"Test passed."
end subroutine
end submodule GreatGrandChild