summaryrefslogtreecommitdiff
path: root/Tests/Fortran/foo.f
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Fortran/foo.f')
-rw-r--r--Tests/Fortran/foo.f9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/Fortran/foo.f b/Tests/Fortran/foo.f
new file mode 100644
index 000000000..dbbb3a4e9
--- /dev/null
+++ b/Tests/Fortran/foo.f
@@ -0,0 +1,9 @@
+ module test_mod
+ interface dummy
+ module procedure sub
+ end interface
+ contains
+ subroutine sub
+ end subroutine
+
+ end module test_mod