This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/54778] [OOP] an ICE on invalid OO code
- 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, 02 Oct 2012 19:31:40 +0000
- Subject: [Bug fortran/54778] [OOP] an ICE on invalid OO code
- Auto-submitted: auto-generated
- References: <bug-54778-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54778
--- Comment #3 from janus at gcc dot gnu.org 2012-10-02 19:31:40 UTC ---
Btw, here is a slightly simpler version of the test case with the same
symptoms:
implicit none
type :: arr_t
real :: at
end type
type(arr_t) :: this
class(arr_t) :: elem
elem = this
end