aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/ref-qual3.C
blob: 1b21196321aed8d86a1826c9b763559f9f6395b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// An explicitly defaulted function can have a ref-qualifier.

// { dg-require-effective-target c++11 }

struct A {
  A& operator=(const A&) & = default;
};

template<class T>
struct B {
  B& operator=(const B&) & = default;
};

template<class T>
void f()
{
  B<T> b;
  b = B<T>();
  B<T>() = b;			// { dg-error "" }
}

int main()
{
  A a;
  a = A();
  A() = a;			// { dg-error "" }

  f<int>();
}