Home
last modified time | relevance | path

Searched refs:HasDefaultOps (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.moveconstructible/
H A Dmove_constructible.compile.pass.cpp31 static_assert(std::move_constructible<HasDefaultOps>);
43 static_assert(std::move_constructible<int HasDefaultOps::*>);
44 static_assert(std::move_constructible<void (HasDefaultOps::*)(int)>);
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.copyconstructible/
H A Dcopy_constructible.compile.pass.cpp32 static_assert(std::copy_constructible<HasDefaultOps>);
37 static_assert(std::copy_constructible<int HasDefaultOps::*>);
38 static_assert(std::copy_constructible<void (HasDefaultOps::*)(int)>);
/llvm-project-15.0.7/libcxx/test/support/type_classification/
H A Dmoveconstructible.h11 struct HasDefaultOps {}; struct