aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/implicit-copy.C
blob: 861fe201f108a1a8aafbe9d44d47914a9ab6bb82 (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 &&);		// { dg-error "" }
  S & operator=(S const &&);	// { dg-error "" }
};

void f()
{
  S a;
  S b(a);			// { dg-error "" }
  a = b;			// { dg-error "" }
}