summaryrefslogtreecommitdiff
path: root/Tests/Fortran/External/a.f90
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Fortran/External/a.f90')
-rw-r--r--Tests/Fortran/External/a.f907
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Fortran/External/a.f90 b/Tests/Fortran/External/a.f90
new file mode 100644
index 000000000..2be73c53c
--- /dev/null
+++ b/Tests/Fortran/External/a.f90
@@ -0,0 +1,7 @@
+MODULE externalMod
+!
+CONTAINS
+ SUBROUTINE printExtModGreeting
+ WRITE(*,*) "Greetings from Module externalMod"
+ END SUBROUTINE
+END MODULE