summaryrefslogtreecommitdiffstats
path: root/Tests/FortranOnly/objmod.f90
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FortranOnly/objmod.f90')
-rw-r--r--Tests/FortranOnly/objmod.f907
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/FortranOnly/objmod.f90 b/Tests/FortranOnly/objmod.f90
new file mode 100644
index 0000000..6b79cc7
--- /dev/null
+++ b/Tests/FortranOnly/objmod.f90
@@ -0,0 +1,7 @@
+module objmod
+ implicit none
+contains
+ subroutine hello()
+ print '(a)', "hello world"
+ end subroutine hello
+end module objmod