aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
authorPatrick Palka <ppalka@redhat.com>2022-12-23 09:18:37 -0500
committerPatrick Palka <ppalka@redhat.com>2022-12-23 09:18:37 -0500
commitbd1fc4a219d8c0fad0ec41002e895b49e384c1c2 (patch)
treecd99579216aa7a67a62163ba94967f78c0870e84 /gcc/testsuite
parentb358521b608f36409281a51263ace3155d28f54d (diff)
downloadgcc-bd1fc4a219d8c0fad0ec41002e895b49e384c1c2.zip
gcc-bd1fc4a219d8c0fad0ec41002e895b49e384c1c2.tar.gz
gcc-bd1fc4a219d8c0fad0ec41002e895b49e384c1c2.tar.bz2
c++: template friend with variadic constraints [PR107853]
When instantiating a constrained hidden template friend, we substitute into its template-head requirements in tsubst_friend_function. For this substitution we use the template's full argument vector whose outer levels correspond to the instantiated class's arguments and innermost level corresponds to the template's own level-lowered generic arguments. But for A<int>::f here, for which the relevant argument vector is {{int}, {Us...}}, the substitution into (C<Ts, Us> && ...) triggers the assert in use_pack_expansion_extra_args_p since one argument is a pack expansion and the other isn't. And for A<int, int>::f, for which the relevant argument vector is {{int, int}, {Us...}}, the use_pack_expansion_extra_args_p assert would also trigger but we first get a bogus "mismatched argument pack lengths" error from tsubst_pack_expansion. Sidestepping the question of whether tsubst_pack_expansion should be able to handle such substitutions, it seems we can work around this by using only the instantiated class's arguments and not also the template friend's own generic arguments, which is consistent with how we normally substitute into the signature of a member template. PR c++/107853 gcc/cp/ChangeLog: * constraint.cc (maybe_substitute_reqs_for): Substitute into the template-head requirements of a template friend using only its outer arguments via outer_template_args. * cp-tree.h (outer_template_args): Declare. * pt.cc (outer_template_args): Define, factored out and generalized from ... (ctor_deduction_guides_for): ... here. gcc/testsuite/ChangeLog: * g++.dg/cpp2a/concepts-friend12.C: New test. * g++.dg/cpp2a/concepts-friend13.C: New test.
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/g++.dg/cpp2a/concepts-friend12.C21
-rw-r--r--gcc/testsuite/g++.dg/cpp2a/concepts-friend13.C20
2 files changed, 41 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/cpp2a/concepts-friend12.C b/gcc/testsuite/g++.dg/cpp2a/concepts-friend12.C
new file mode 100644
index 0000000..9687be5
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp2a/concepts-friend12.C
@@ -0,0 +1,21 @@
+// PR c++/107853
+// { dg-do compile { target c++20 } }
+
+template<class T, class U>
+concept C = __is_same(T, U);
+
+template<class... Ts>
+struct A {
+ template<class... Us>
+ requires (C<Ts, Us> && ...)
+ friend void f(A, A<Us...>) { }
+};
+
+int main() {
+ A<int> x;
+ f(x, x);
+ A<int, int> y;
+ f(y, y);
+ A<char> z;
+ f(x, z); // { dg-error "no match" }
+}
diff --git a/gcc/testsuite/g++.dg/cpp2a/concepts-friend13.C b/gcc/testsuite/g++.dg/cpp2a/concepts-friend13.C
new file mode 100644
index 0000000..3cc4505
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp2a/concepts-friend13.C
@@ -0,0 +1,20 @@
+// Verify we substitute the correct outer template arguments
+// when instantiating a constrained template friend declared
+// inside a partial specialization.
+// { dg-do compile { target c++20 } }
+
+template<class U>
+ requires __is_same(int*, U)
+void f() { };
+
+template<class T>
+struct A;
+
+template<class T>
+struct A<T*> {
+ template<class U>
+ requires __is_same(T, U)
+ friend void f() { } // { dg-bogus "redefinition" }
+};
+
+template struct A<int*>;