Built and tested on x86-64-linux.
This is just a test case.
2014-03-01 Edward Smith-Rowland <[email protected]>
PR c++/50025
* g++.dg/cpp0x/pr50025.C: New.
Index: g++.dg/cpp0x/pr50025.C
===================================================================
--- g++.dg/cpp0x/pr50025.C (revision 0)
+++ g++.dg/cpp0x/pr50025.C (working copy)
@@ -0,0 +1,40 @@
+// { dg-options "-std=gnu++11" }
+
+#include <utility>
+
+class A
+{
+public:
+
+ A(int a, int& b, int&& c)
+ : m_a{a},
+ m_b{b},
+ m_c{std::move(c)}
+ {}
+
+private:
+
+ int m_a;
+ int& m_b;
+ int&& m_c;
+};
+
+
+struct X {};
+
+class B
+{
+public:
+
+ B(X& q, X&& r, const X& s)
+ : m_q{q},
+ m_r{std::move(r)},
+ m_s{s}
+ {}
+
+private:
+
+ X& m_q;
+ X&& m_r;
+ const X& m_s;
+};