Lines Matching defs:Wrapper
58 struct Wrapper {
59 constexpr Wrapper() = default;
60 constexpr Wrapper(Wrapper const&) = default;
61 constexpr Wrapper(T const& t) : t(t) { }
62 constexpr Wrapper(Wrapper &&) = default;
64 constexpr bool operator==(Wrapper const&) const = default;
117 Wrapper<X> x;
122 // static_assert((Wrapper<X>(), true));