[committed] libstdc++: Add test for type traits not having friend access

Message ID 20220924000753.1717363-1-jwakely@redhat.com
State Committed
Commit 5924c7d584640665db174c7545ae6c2b784af27c
Headers
Series [committed] libstdc++: Add test for type traits not having friend access |

Commit Message

Jonathan Wakely Sept. 24, 2022, 12:07 a.m. UTC
  Tested powerpc64le-linux. Pushed to trunk.

-- >8 --

This ensures that the std::is_assignable and std::is_assignable_v
traits are evaluated "in a context unrelated" to the argument types.

libstdc++-v3/ChangeLog:

	* testsuite/20_util/is_assignable/requirements/access.cc:
	New test.
---
 .../is_assignable/requirements/access.cc      | 22 +++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 libstdc++-v3/testsuite/20_util/is_assignable/requirements/access.cc
  

Patch

diff --git a/libstdc++-v3/testsuite/20_util/is_assignable/requirements/access.cc b/libstdc++-v3/testsuite/20_util/is_assignable/requirements/access.cc
new file mode 100644
index 00000000000..a96fba654cd
--- /dev/null
+++ b/libstdc++-v3/testsuite/20_util/is_assignable/requirements/access.cc
@@ -0,0 +1,22 @@ 
+// { dg-do compile { target c++11 } }
+
+#include <type_traits>
+
+class S {
+  operator int();
+  friend void g(); // #1
+};
+
+void
+g()
+{
+  int i = 0;
+  S s;
+  i = s; // this works, because we're inside a friend.
+
+  // But the traits are evaluated in "a context unrelated to either type".
+  static_assert( ! std::is_assignable<int&, S>::value, "unfriendly");
+#if __cplusplus >= 201703L
+  static_assert( ! std::is_assignable_v<int&, S>, "unfriendly");
+#endif
+}