aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/Wunused-parm.C
blob: 232e484356e22ccc75f4238bcd566f737522a114 (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
// PR c++/57211
// { dg-do compile { target c++11 } }
// { dg-options "-Wunused-parameter" }

template <class T> T&& move(T&);

struct A
{
  struct B
  {
    B& operator=(B&&);
  };

  B f;

  A& operator=(A&& p) = default;
};

int main()
{
  A a;
  A b;
  b = move(a);
}