// PR c++/90320 // { dg-do compile { target c++11 } } struct M { M() = default; template explicit M(T&&) = delete; }; struct V { V(M m); }; M m; V v = m;