SPLICE_SCOPE is a TYPE_P, but didn't have its SPLICE_SCOPE_EXPR
walked by cp_walk_tree, so the following testcase has been rejected
because it didn't find a pack in it.
SPLICE_EXPR is fine, as it is tcc_expression and walk_tree by default
walks all the tcc_exception operands for unknown trees.
2026-02-07 Jakub Jelinek <jakub@redhat.com>
PR c++/123659
* tree.cc (cp_walk_subtrees): Handle SPLICE_SCOPE.
* g++.dg/reflect/splice9.C: New test.
WALK_SUBTREE (TYPE_MAX_VALUE (t));
break;
+ case SPLICE_SCOPE:
+ WALK_SUBTREE (SPLICE_SCOPE_EXPR (t));
+ *walk_subtrees_p = 0;
+ break;
+
default:
return NULL_TREE;
}
--- /dev/null
+// PR c++/123659
+// { dg-do compile { target c++26 } }
+// { dg-additional-options "-freflection" }
+
+#include <meta>
+
+struct S {};
+
+template <int...I>
+void
+foo ()
+{
+ static constexpr std::meta::info t[] { ^^int, ^^long, ^^S, ^^double };
+ [] (typename [: t[I] :]... a) {} (1, S {}, 2.5, 3L, 4L);
+}
+
+void
+bar ()
+{
+ foo <0, 2, 3, 1, 1> ();
+}