summaryrefslogtreecommitdiff
path: root/Modules/FortranCInterface/my_module.f90
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/FortranCInterface/my_module.f90')
-rw-r--r--Modules/FortranCInterface/my_module.f908
1 files changed, 8 insertions, 0 deletions
diff --git a/Modules/FortranCInterface/my_module.f90 b/Modules/FortranCInterface/my_module.f90
new file mode 100644
index 000000000..82713b43e
--- /dev/null
+++ b/Modules/FortranCInterface/my_module.f90
@@ -0,0 +1,8 @@
+module my_module
+ interface my_interface
+ module procedure my_sub
+ end interface
+contains
+ subroutine my_sub
+ end subroutine my_sub
+end module my_module