From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6CA093858C56; Fri, 7 Oct 2022 19:12:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6CA093858C56 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1665169955; bh=ojd2DgpUoFVozyXgbvJITfolViMv0JHUcuoWcILHJ7k=; h=From:To:Subject:Date:In-Reply-To:References:From; b=CZ2nUT8h5ttbgXC2exKir8Rb3rp4BuzImGwzIPDOF712v88/wXcX4bHCSI5gX+Wqg Q2uZaDJQZLs9D6p6OkiZaaSXxdKw1OXIhvG3vTrv2falIOtSIPnhxAxK+B+Y4HrHZ2 hDW3W870y1q0TiG8UrC/mFxbEnav4xJhRYblUZZU= From: "ppalka at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/100134] [modules] ICE when using a vector in a module Date: Fri, 07 Oct 2022 19:11:44 +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: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ppalka 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: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on keywords everconfirmed cc 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=3D100134 Patrick Palka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2022-10-07 Keywords| |ice-on-valid-code Ever confirmed|0 |1 CC| |ppalka at gcc dot gnu.org --- Comment #7 from Patrick Palka --- Adding 'namespace std { }' alongside the exported entity seems to be a workaround, e.g. export module mod; import "std.hpp"; namespace std { } export std::X v;=