mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 04:10:05 -06:00
When there is an `end interface X` in a file, subsequent modules should not be considered part of interface X. Issue: #24203
9 lines
119 B
Fortran
9 lines
119 B
Fortran
module first
|
|
interface inner
|
|
end interface inner
|
|
end module first
|
|
|
|
module second
|
|
REAL :: C = 1
|
|
end module second
|