This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/47545] ICE: in gfc_get_derived_type, at fortran/trans-types.c:2145
- 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: Sun, 30 Jan 2011 22:18:29 +0000
- Subject: [Bug fortran/47545] ICE: in gfc_get_derived_type, at fortran/trans-types.c:2145
- Auto-submitted: auto-generated
- References: <bug-47545-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47545
janus at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |janus at gcc dot gnu.org
--- Comment #1 from janus at gcc dot gnu.org 2011-01-30 22:18:26 UTC ---
Reduced test case:
type astronaut
character(:), allocatable :: greeting
end type
contains
function constructor() result(new_astronaut)
type(astronaut) :: new_astronaut
end function
end