Upload hf_env/lib/python3.14/site-packages/numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 with huggingface_hub
Browse files
hf_env/lib/python3.14/site-packages/numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
module mod2
|
| 2 |
+
implicit none
|
| 3 |
+
PUBLIC :: mod2_func1
|
| 4 |
+
contains
|
| 5 |
+
|
| 6 |
+
subroutine mod2_func1()
|
| 7 |
+
print*, "mod2_func1"
|
| 8 |
+
end subroutine mod2_func1
|
| 9 |
+
|
| 10 |
+
end module mod2
|
| 11 |
+
|
| 12 |
+
module mod1
|
| 13 |
+
implicit none
|
| 14 |
+
PUBLIC :: mod1_func1
|
| 15 |
+
contains
|
| 16 |
+
|
| 17 |
+
subroutine mod1_func1()
|
| 18 |
+
print*, "mod1_func1"
|
| 19 |
+
end subroutine mod1_func1
|
| 20 |
+
|
| 21 |
+
end module mod1
|