Commit c067f4db by Jason Merrill Committed by Jason Merrill

re PR c++/50442 (Constructing T from implicit conversion to T& ambiguous in C++0x mode, not C++98)

	PR c++/50442
	* g++.dg/overload/ref-conv1.C: New.

From-SVN: r179015
parent 62e3d9e6
2011-09-20 Jason Merrill <jason@redhat.com>
PR c++/50442
* g++.dg/overload/ref-conv1.C: New.
2011-09-20 Roberto Agostino Vitillo <ravitillo@lbl.gov>
* g++.dg/other/final1.C: new test
......
// PR c++/50442
template <typename T> struct MoveRef { operator T& () {} };
template <typename T> MoveRef <T> Move(T&) {}
struct Thing {};
Thing foo(const Thing* p) { return Thing(Move(*p)); }
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