CMake/Tests/FortranModules/test_module_implementation.f90
Brad King eb8cd35684 Tests: Split Fortran module testing into separate FortranModules test
The main Fortran test is not granular enough.  Split some into another
test.
2016-09-22 14:52:01 -04:00

7 lines
179 B
Fortran

FUNCTION TEST_MODULE_FUNCTION(A,B)
REAL :: TEST_MODULE_FUNCTION
REAL, INTENT(IN) :: A
REAL, INTENT(IN) :: B
TEST_MODULE_FUNCTION = A + B
END FUNCTION TEST_MODULE_FUNCTION