diff mbox

[C++] PR 50025 - [DR 1288] C++0x initialization syntax doesn't work for class members of reference type

Message ID 5312650B.7040400@verizon.net
State New
Headers show

Commit Message

Ed Smith-Rowland March 1, 2014, 10:54 p.m. UTC
Built and tested on x86-64-linux.

This is just a test case.
2014-03-01  Edward Smith-Rowland  <3dw4rd@verizon.net>

	PR c++/50025
	* g++.dg/cpp0x/pr50025.C: New.
diff mbox

Patch

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;
+};