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

struct B { };

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

struct V {
  V(B);
};

M m;
V v = m;