This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/47168] New: Error with use-renaming
- From: "janus at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Tue, 4 Jan 2011 15:19:46 +0000
- Subject: [Bug fortran/47168] New: Error with use-renaming
- Auto-submitted: auto-generated
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47168
Summary: Error with use-renaming
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
AssignedTo: unassigned@gcc.gnu.org
ReportedBy: janus@gcc.gnu.org
Posted by James van Buskirk at c.l.f:
http://groups.google.com/group/comp.lang.fortran/browse_thread/thread/4fbe901275607684
module m
implicit none
type t
integer i
end type t
end module m
module n
use m, only: a=>t
implicit none
private
public a
end module n
module oh
use n
use n, only: b=>a
implicit none
private
public a, b
end module oh
>gfortran -c bug1.f90
bug1.f90:20.11:
public a, b
1
Error: Symbol 'a' at (1) has no IMPLICIT type
The thread contains some more test cases. All of them should be checked.