2017-12-15 Markus Trippelsdorf <markus@trippelsdorf.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / module_private_1.f90
blob66bc56405b08c2ee6f7c8846a9e0c6411f83d1d8
1 ! { dg-do compile }
2 ! { dg-options "-fmodule-private" }
3 module bar
4 implicit none
5 public :: i
6 integer :: i
7 end module bar
9 module foo
10 implicit none
11 integer :: j
12 end module foo
14 program main
15 use bar, only : i
16 use foo, only : j ! { dg-error "not found in module" }
17 i = 1
18 j = 1
19 print *, i, j
20 end program main