Files
CMake/Tests/FortranModules/test_multi_module.f90
Ben Boeckel a67da2ef66 Tests/FortranModules: add case for modules after "end interface X"
When there is an `end interface X` in a file, subsequent modules should
not be considered part of interface X.

Issue: #24203
2022-11-30 06:39:48 -05:00

9 lines
119 B
Fortran

module first
interface inner
end interface inner
end module first
module second
REAL :: C = 1
end module second