Otherwise attempting to get the originating module declaration ICEs
because the DECL_CHAIN of an instantiated friend template is no longer
its context.
PR c++/104234
PR c++/112580
gcc/cp/ChangeLog:
* pt.cc (tsubst_template_decl): Clear
DECL_UNINSTANTIATED_TEMPLATE_FRIEND_P.
gcc/testsuite/ChangeLog:
* g++.dg/modules/pr104234.C: New test.
Signed-off-by: Nathaniel Shead <nathanieloshead@gmail.com>
if (PRIMARY_TEMPLATE_P (t))
DECL_PRIMARY_TEMPLATE (r) = r;
+ DECL_UNINSTANTIATED_TEMPLATE_FRIEND_P (r) = false;
+
if (!lambda_fntype && !class_p)
{
/* Record this non-type partial instantiation. */
--- /dev/null
+// PR c++/104234
+// { dg-additional-options "-fmodules-ts" }
+
+template <typename> struct _Node_handle_common {
+ template <typename> friend class _Rb_tree;
+};
+struct _Hashtable {
+ using node_type = _Node_handle_common<int>;
+ node_type __trans_tmp_1;
+};
+template <typename> class _Rb_tree {
+ struct _Rb_tree_impl {
+ _Rb_tree_impl();
+ } _M_impl;
+};
+_Rb_tree<int> _M_tmap_;