c++/61941 - Mis-parsing of warn_unused_result function with ref-qualifiers
authorMartin Sebor <msebor@redhat.com>
Fri, 14 Sep 2018 16:41:37 +0000 (16:41 +0000)
committerMartin Sebor <msebor@gcc.gnu.org>
Fri, 14 Sep 2018 16:41:37 +0000 (10:41 -0600)
gcc/testsuite/ChangeLog:
* g++.dg/pr61941.C: New test.

From-SVN: r264324

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/pr61941.C [new file with mode: 0644]

index b065b40..a5ea71e 100644 (file)
@@ -1,3 +1,8 @@
+2018-09-14  Martin Sebor  <msebor@redhat.com>
+
+       c++/61941
+       * g++.dg/pr61941.C: New test.
+
 2018-09-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
        * gcc.target/aarch64/combine_bfi_1.c: Scan for bfi instruction
diff --git a/gcc/testsuite/g++.dg/pr61941.C b/gcc/testsuite/g++.dg/pr61941.C
new file mode 100644 (file)
index 0000000..5485b98
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/61941 - Misparsing of warn_unused_result function with ref-qualifiers
+// { dg-do compile { target c++11 } }
+// { dg-options "-Wall" }
+
+class S
+{
+public:
+    S x() const __attribute__ ((__warn_unused_result__));
+
+    S y() const & __attribute__ ((__warn_unused_result__));
+    S y() && __attribute__ ((__warn_unused_result__));
+};