aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/defaulted39.C
blob: a4963c4d13215cdc0231ca424b7be464f56594c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// DR 1402
// { dg-do compile { target c++11 } }

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

struct A
{
  A(const A&);
};

struct B
{
  B(B&&);
};

struct C
{
  A a;
  B b;
};

extern C c1;
C c2(move(c1));