[cmake-commits] king committed main.f90 NONE 1.1 module.f90 NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Oct 10 09:09:11 EDT 2007


Update of /cvsroot/CMake/CMake/Tests/Fortran/in_interface
In directory public:/mounts/ram/cvs-serv3639/in_interface

Added Files:
	main.f90 module.f90 
Log Message:
ENH: Added test for 'use' keyword in a comment.  Patch from Maik Beckmann.  See bug#5809.


--- NEW FILE: main.f90 ---
program hello
    use test_interface
end program hello

--- NEW FILE: module.f90 ---
module test_interface

    interface dummy
        module procedure module_function
    end interface

contains

    subroutine module_function
    end subroutine

end module test_interface


More information about the Cmake-commits mailing list