OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [access_spec_3.f90] - Rev 720

Go to most recent revision | Compare with Previous | Blame | View Log

! { dg-do compile }
!
! Tests the fix for PR36454, where the PUBLIC declaration for
! aint and bint was rejected because the access was already set.
!
! Contributed by Thomas Orgis <thomas.orgis@awi.de>

module base
        integer :: baseint
end module

module a
        use base, ONLY: aint => baseint
end module

module b
        use base, ONLY: bint => baseint
end module

module c
        use a
        use b
        private
        public :: aint, bint
end module

program user
        use c, ONLY: aint, bint

        aint = 3
        bint = 8
        write(*,*) aint
end program
! { dg-final { cleanup-modules "base a b c" } }

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.