Commit 2c5c8866 by Edward Smith-Rowland Committed by Edward Smith-Rowland

re PR c++/50025 ([DR 1288] C++0x initialization syntax doesn't work for class…

re PR c++/50025 ([DR 1288] C++0x initialization syntax doesn't work for class members of reference type)

2014-03-01  Edward Smith-Rowland  <3dw4rd@verizon.net>

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

From-SVN: r208251
parent 234b1504
2014-03-01 Edward Smith-Rowland <3dw4rd@verizon.net>
PR c++/50025
* g++.dg/cpp0x/pr50025.C: New.
2014-03-01 Adam Butcher <adam@jessamine.co.uk>
PR c++/60377
......
// { 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;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment