summaryrefslogtreecommitdiff
path: root/src/it/it0018-fortran/src/main/fortran/a.f90
diff options
context:
space:
mode:
Diffstat (limited to 'src/it/it0018-fortran/src/main/fortran/a.f90')
-rw-r--r--src/it/it0018-fortran/src/main/fortran/a.f9014
1 files changed, 14 insertions, 0 deletions
diff --git a/src/it/it0018-fortran/src/main/fortran/a.f90 b/src/it/it0018-fortran/src/main/fortran/a.f90
new file mode 100644
index 0000000..2c898d1
--- /dev/null
+++ b/src/it/it0018-fortran/src/main/fortran/a.f90
@@ -0,0 +1,14 @@
+program a
+use B
+use C
+use D
+
+implicit none
+
+ call f_b()
+ call f_c()
+ call f_d()
+
+end program a
+
+