c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / explicit13.C
blobcbd9a73d8fcbe0567961dd61cfa2b3ebec3d89a3
1 // PR c++/90320
2 // { dg-do compile { target c++11 } }
4 struct M {
5   M() = default;
6   template <typename T> explicit M(T&&) = delete;
7 };
9 struct V {
10   V(M m);
13 M m;
14 V v = m;