mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-30 21:04:21 +00: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
|