From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9CFE13858C52; Mon, 26 Sep 2022 23:34:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9CFE13858C52 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664235296; bh=htizerXMGOpTYIqGn3QN+9fZD4uk84Sja004CgMvc4U=; h=From:To:Subject:Date:In-Reply-To:References:From; b=qTEAjsLR4WytwJ7xa3IvMLxKI+RJ/Uad5d5/T2xlmbPXfFS0bqJwPJpZ12SWy8Fdt mcOkPpLYI72UuswNo+N7y3IAdZGHuwBeBjnVonegZZR8nFYBaOFWICzFJnyY1jkjcW rqElbxz3DcgfrPcuVbrZ97t6tl4pt4qhJ5GpIFp8= From: "johelegp at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/100134] [modules] ICE when using a vector in a module Date: Mon, 26 Sep 2022 23:34:55 +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: 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=3D100134 --- Comment #6 from Johel Ernesto Guerrero Pe=C3=B1a --- See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107045#c1 for a minimal reproducer: Minimal: https://godbolt.org/z/hxrPvPPhs. ```C++ namespace std { template struct X { friend void f(); }; } ``` ```C++ export module mod; import "std.hpp"; export std::X v; ```=