Verify a warning for a class with a ref-qualified assignment (PR c++/98835).
authorMartin Sebor <msebor@redhat.com>
Mon, 1 Feb 2021 15:42:58 +0000 (08:42 -0700)
committerMartin Sebor <msebor@redhat.com>
Mon, 1 Feb 2021 15:42:58 +0000 (08:42 -0700)
gcc/testsuite/ChangeLog:
PR c++/98835
* g++.dg/Wclass-memaccess-6.C: New test.

gcc/testsuite/g++.dg/Wclass-memaccess-6.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.dg/Wclass-memaccess-6.C b/gcc/testsuite/g++.dg/Wclass-memaccess-6.C
new file mode 100644 (file)
index 0000000..7f6fe03
--- /dev/null
@@ -0,0 +1,18 @@
+/* PR c++/98835 - -Wclass-memaccess with class with ref-qualified
+   copy-assignment operator
+   { dg-do compile { target { c++11 } } }
+   { dg-options "-Wall" } */
+
+struct Bad
+{
+  Bad* operator& () { return this; }
+  Bad & operator=(Bad const &) & = default;
+};
+
+void test ()
+{
+  static_assert (__has_trivial_copy (Bad));
+
+  // T () = T ();                                      // error
+  __builtin_memcpy (&Bad (), &Bad (), sizeof (Bad));   // { dg-warning "\\\[-Wclass-memaccess" }
+}