https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77602
Bug ID: 77602 Summary: ICE with cyclic length declaration: Killed (program f951) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fort...@t-online.de Target Milestone: --- Invalid code with a cyclic length declaration, similar to pr47915 : $ cat z1.f90 subroutine s(x) implicit character (a-z) character(len=len(y)+1) :: x character(len=len(x)+1) :: y end $ gfortran-7-20160911 -c z1.f90 gfortran: internal compiler error: Killed (program f951)