view gcc/testsuite/g++.dg/cpp0x/ref-qual3.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// 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>();
}