Home | History | Annotate | Download | only in class.copy

Lines Matching defs:Test

192   struct Test : HasImplicitlyDeletedCopyCtor {
193 Test(const Test&) = default;
194 Test(Test&&) = default;
197 static_assert(__has_trivial_copy(Test), "");
199 static_assert(!__is_trivially_constructible(Test, const Test &), "");
201 static_assert(!__is_trivially_constructible(Test, Test &&), "");