[Bug fortran/45916] [4.6 regression] ICE in match_procedure_in_type, at fortran/decl.c:7921

mikael at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Oct 6 20:46:00 GMT 2010


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45916

--- Comment #2 from Mikael Morin <mikael at gcc dot gnu.org> 2010-10-06 20:45:53 UTC ---
Reduced testcase:

module m_sort
  implicit none
  type, abstract :: sort_t
  contains
    generic :: operator(.gt.) => gt_cmp
    procedure(gt_cmp), deferred :: gt_cmp
  end type sort_t
end module m_sort



More information about the Gcc-bugs mailing list