summaryrefslogtreecommitdiff
path: root/Tests/Fortran/foo.f
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-10-29 10:58:40 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2008-10-29 10:58:40 -0400
commit84a4222314e8cb52781cb2b98dca4c69bb6cf739 (patch)
tree1b3dde4101bdfded6db3a6d500714416b51f6de2 /Tests/Fortran/foo.f
parent4eec7b2d03e0173deeb0f7ae29891eefb8ea9bb8 (diff)
downloadcmake-84a4222314e8cb52781cb2b98dca4c69bb6cf739.tar.gz
ENH: add test for FortranCInterface
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 0000000000..dbbb3a4e95
--- /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