summaryrefslogtreecommitdiff
path: root/Tests/Fortran/test_module_implementation.f90
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Fortran/test_module_implementation.f90')
-rw-r--r--Tests/Fortran/test_module_implementation.f906
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/Fortran/test_module_implementation.f90 b/Tests/Fortran/test_module_implementation.f90
new file mode 100644
index 000000000..de3cb574c
--- /dev/null
+++ b/Tests/Fortran/test_module_implementation.f90
@@ -0,0 +1,6 @@
+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