URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [public_private_module.f90] - Rev 826
Compare with Previous | Blame | View Log
! { dg-do compile }
! See PR fortran/36251.
module a
implicit none
integer :: i = 42
end module a
module b
use a
implicit none
public a ! { dg-warning "attribute applied to" }
end module b
module d
use a
implicit none
private a ! { dg-warning "attribute applied to" }
end module d
! { dg-final { cleanup-modules "a" } }