From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BC4793858CDA; Sun, 25 Sep 2022 16:32:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BC4793858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664123576; bh=L1QUdxtmeH2CS8Sfuljm5+HNsdFygxJgNfkkl00xszw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Vp7NrHVWRjY5/mI0kq9+FtAlu7c/+pSbHsfxYFKUeeKdkfZawgF1MO4VQrToqCX1N YXMUWzt52gQR8tuNf6yxp5g7A21gs7lSdiMEeLBCNEPhsUmQ9qx0cktw3KClJWlZ3z Lo5DRPjC3TrHlTcODIwizn49nF7Av4Qoay1/Y0bE= From: "johelegp at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/107033] [13 Regression] [modules] ICE using span as a range Date: Sun, 25 Sep 2022 16:32:56 +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.0 X-Bugzilla-Keywords: ice-on-valid-code, rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: johelegp at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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=3D107033 --- Comment #3 from Johel Ernesto Guerrero Pe=C3=B1a --- Simplified: https://godbolt.org/z/3Ys316aeE. ```C++ export module mod; import "std.hpp"; int x[2]; export auto _ =3D std::ranges::begin(x); ```=