aboutsummaryrefslogtreecommitdiff
path: root/example_packages/submodules/src/parent.f90
diff options
context:
space:
mode:
Diffstat (limited to 'example_packages/submodules/src/parent.f90')
-rw-r--r--example_packages/submodules/src/parent.f9015
1 files changed, 15 insertions, 0 deletions
diff --git a/example_packages/submodules/src/parent.f90 b/example_packages/submodules/src/parent.f90
new file mode 100644
index 0000000..570827c
--- /dev/null
+++ b/example_packages/submodules/src/parent.f90
@@ -0,0 +1,15 @@
+module parent
+implicit none
+
+interface
+
+ module subroutine my_sub1(a)
+ integer, intent(out) :: a
+ end subroutine my_sub1
+
+ module subroutine my_sub2(a)
+ integer, intent(out) :: a
+ end subroutine my_sub2
+end interface
+
+end module parent \ No newline at end of file