mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -06:00
Name the module using CamelCase to test lower-case file name conversion. Also add coverage of existing "sibling" module.
10 lines
284 B
Fortran
10 lines
284 B
Fortran
! Empty submodule for checking disambiguation of
|
|
! nodes at the same vertical level in the tree
|
|
submodule ( parent ) sibling
|
|
contains
|
|
module function sibling_function() result(sibling_stuff)
|
|
logical :: sibling_stuff
|
|
sibling_stuff=.true.
|
|
end function
|
|
end submodule sibling
|