summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/module_private_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/module_private_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/module_private_1.f9022
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/module_private_1.f90 b/gcc/testsuite/gfortran.dg/module_private_1.f90
new file mode 100644
index 000000000..7d854a1a9
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/module_private_1.f90
@@ -0,0 +1,22 @@
+! { dg-do compile }
+! { dg-options "-fmodule-private" }
+module bar
+ implicit none
+ public :: i
+ integer :: i
+end module bar
+
+module foo
+ implicit none
+ integer :: j
+end module foo
+
+program main
+ use bar, only : i
+ use foo, only : j ! { dg-error "not found in module" }
+ i = 1
+ j = 1
+ print *, i, j
+end program main
+
+! { dg-final { cleanup-modules "bar foo" } }