ENH: do not depend on files that do not exist
[cmake.git] / Tests / Fortran / in_interface / module.f90
blob1064d74b0f852a7111d7e4e3a1bd9bfc31e5b07a
1 module test_interface
3 interface dummy
4 module procedure module_function
5 end interface
7 contains
9 subroutine module_function
10 end subroutine
12 end module test_interface