From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CCABE385842E; Sun, 4 Jun 2023 19:02:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CCABE385842E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1685905320; bh=g3BxRk3pYAtFYRmxqlwDhqFByM2xInwjyQ/rdgQvGhs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=mJlIns/2mv9F0EwVG5QkpHS44Qli+aUx9RHT2FRZHlxVYESS9t3/m2J++5sZ7I7MM fqWkG5tyZ82kB1z4Dcz6gRp15F6ZVCzTxhi4h3fUQQkqfcMi6SY+QOfEF9vNpA+Ujr fMVAh66cZkTurP00y1I/0pFjAfz2cwwTuXHh759I= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/110114] [13/14 Regression] ICE on calling overloaded function in case of incomplete argument type Date: Sun, 04 Jun 2023 19:02:00 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 13.1.0 X-Bugzilla-Keywords: ice-on-invalid-code, ice-on-valid-code, needs-bisection X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.2 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110114 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code --- Comment #2 from Andrew Pinski --- Also ICEs on a simple invalid case: ``` struct B; void foo(const B &) {} int main() { foo({.a=3D0}); } ```=