blob: 211f88b2b19409139bc8b286592a8e2d4198eba1 [file] [log] [blame]
// { dg-options "--std=c++0x" }
struct S
{
S();
S(S &&);
private:
S(S &);
};
S f()
{
S s;
return static_cast<S&&>(s);
}