CMake/Tests/FortranModules/test_multi_module_main.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

5 lines
75 B
Fortran

PROGRAM MAINF90
use second
PRINT *,'Constant is',C
END PROGRAM MAINF90