blob: 1360f608e69b9a7d0536a5d12137e79e5f9a4fc8 [file] [log] [blame]
// PR c++/53733
// { dg-do compile { target c++11 } }
template<typename T>
struct wrap
{
wrap() = default;
wrap(wrap&&) = default; // Line 5
wrap(const wrap&) = default;
T t;
};
struct S {
S() = default;
S(const S&){}
S(S&&) = default;
};
typedef wrap<const S> W;
W get() { return W(); } // Line 19
int main() {}