]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: is_specialization_of_friend confusion [PR109923]
authorPatrick Palka <ppalka@redhat.com>
Sat, 3 Jun 2023 13:26:43 +0000 (09:26 -0400)
committerPatrick Palka <ppalka@redhat.com>
Sat, 3 Jun 2023 13:26:43 +0000 (09:26 -0400)
The check for a non-template member function of a class template in
is_specialization_of_friend is overbroad, and accidentally holds for a
non-template hidden friend too, which for the testcase below causes the
predicate to bogusly return true for

  decl = void non_templ_friend(A<int>, A<void>)
  friend_decl = void non_templ_friend(A<void>, A<void>)

This patch refines the check appropriately.

PR c++/109923

gcc/cp/ChangeLog:

* pt.cc (is_specialization_of_friend): Fix overbroad check for
a non-template member function of a class template.

gcc/testsuite/ChangeLog:

* g++.dg/template/friend79.C: New test.

gcc/cp/pt.cc
gcc/testsuite/g++.dg/template/friend79.C [new file with mode: 0644]

index dae3815f62a97e670b92afe510817394b8f8124a..6b20c58ce6664c219166093b4a814a18cecfe75f 100644 (file)
@@ -1319,6 +1319,7 @@ is_specialization_of_friend (tree decl, tree friend_decl)
      of a template class, we want to check if DECL is a specialization
      if this.  */
   if (TREE_CODE (friend_decl) == FUNCTION_DECL
+      && DECL_CLASS_SCOPE_P (friend_decl)
       && DECL_TEMPLATE_INFO (friend_decl)
       && !DECL_USE_TEMPLATE (friend_decl))
     {
diff --git a/gcc/testsuite/g++.dg/template/friend79.C b/gcc/testsuite/g++.dg/template/friend79.C
new file mode 100644 (file)
index 0000000..7603adf
--- /dev/null
@@ -0,0 +1,20 @@
+// PR c++/109923
+
+template<class T>
+struct A {
+private:
+  int x;
+
+public:
+  A() : x(0) { }
+
+  friend void non_templ_friend(A val, A<void> weird) {
+    val.x++; // always works
+    weird.x++; // { dg-error "private" } should only work when T=void
+  }
+};
+
+int main() {
+  non_templ_friend(A<void>(), A<void>()); // { dg-bogus "" }
+  non_templ_friend(A<int>(), A<void>()); // { dg-message "required from here" }
+}