blob: ea680a8961b1542aedd75532a9c087c8dd4f760d [file] [log] [blame]
// { dg-options "--std=c++0x" }
struct S
{
S();
private:
S(S const &&);
S & operator=(S const &&);
};
void f()
{
S a;
S b(a);
a = b;
}