c++: ICE during aggr CTAD for member tmpl [PR105476]
authorPatrick Palka <ppalka@redhat.com>
Wed, 4 May 2022 21:08:08 +0000 (17:08 -0400)
committerPatrick Palka <ppalka@redhat.com>
Fri, 6 May 2022 13:11:58 +0000 (09:11 -0400)
Here we're crashing from maybe_aggr_guide ultimately because
processing_template_decl isn't set when partially instantiating the
guide's parameter list; this causes us to force completion of the
dependent type Visitor_functior<Fn>, which of course fails and results
in an unexpected error_mark_node (the instantation should always succeed).

PR c++/105476

gcc/cp/ChangeLog:

* pt.cc (maybe_aggr_guide): Set processing_template_decl when
partially instantiating the guide's parameter list.

gcc/testsuite/ChangeLog:

* g++.dg/cpp2a/class-deduction-aggr13.C: New test.
* g++.dg/cpp2a/class-deduction-aggr13a.C: New test.

(cherry picked from commit 8a98e3ff7e80bf2936f163d50309fd88d72564a0)

gcc/cp/pt.cc
gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13a.C [new file with mode: 0644]

index 81f7ef5..254586c 100644 (file)
@@ -29556,7 +29556,11 @@ maybe_aggr_guide (tree tmpl, tree init, vec<tree,va_gc> *args)
         PARMS, so that its template level is properly reduced and we don't get
         mismatches when deducing types using the guide with PARMS.  */
       if (member_template_p)
-       parms = tsubst (parms, DECL_TI_ARGS (tmpl), complain, init);
+       {
+         ++processing_template_decl;
+         parms = tsubst (parms, DECL_TI_ARGS (tmpl), complain, init);
+         --processing_template_decl;
+       }
     }
   else if (TREE_CODE (init) == TREE_LIST)
     {
diff --git a/gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13.C b/gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13.C
new file mode 100644 (file)
index 0000000..d3b21c7
--- /dev/null
@@ -0,0 +1,11 @@
+// PR c++/105476
+// { dg-do compile { target c++17 } }
+
+template<class> struct Visitor_functor;
+
+template<class> struct Events {
+  template<class... Fn> struct Visitor : Visitor_functor<Fn>::type_t... { };
+};
+
+using ev_t = Events<int>;
+ev_t::Visitor v = { {} }; // { dg-error "too many initializers" }
diff --git a/gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13a.C b/gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13a.C
new file mode 100644 (file)
index 0000000..69ae5dd
--- /dev/null
@@ -0,0 +1,18 @@
+// PR c++/105476
+// { dg-do compile { target c++20 } }
+// A valid version of class-deduction-aggr13.C.
+
+template<class> struct Visitor_functor;
+
+template<> struct Visitor_functor<int> {
+  using type_t = int;
+};
+
+template<class T> struct Events {
+  template<class Fn=T> struct Visitor {
+    Visitor_functor<Fn>::type_t t;
+  };
+};
+
+using ev_t = Events<int>;
+ev_t::Visitor v = { {} };