https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106560
Bug ID: 106560 Summary: ICE after conflicting types of redeclaration Product: gcc Version: 12.0 Status: UNCONFIRMED Keywords: error-recovery, ice-on-invalid-code Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- ``` void **a; void b() { void **c = a; } a; ```