summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/explicit13.C
blob: cbd9a73d8fcbe0567961dd61cfa2b3ebec3d89a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/90320
// { dg-do compile { target c++11 } }

struct M {
  M() = default;
  template <typename T> explicit M(T&&) = delete;
};

struct V {
  V(M m);
};

M m;
V v = m;