aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/implicit-copy.C
blob: ea680a8961b1542aedd75532a9c087c8dd4f760d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { 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;
}