This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/18737] ICE on invalid use of external keyword
- From: "tobi at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 14 Mar 2005 20:34:31 -0000
- Subject: [Bug fortran/18737] ICE on invalid use of external keyword
- References: <20041130130554.18737.coudert@clipper.ens.fr>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From tobi at gcc dot gnu dot org 2005-03-14 20:34 -------
Actually, this slightly modified valid testcase fails with the same error:
program test
! implicit none
real(8) :: x
external bug
x = 2
print *, bug(x)
end program test
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18737