Lines Matching defs:copy
45 // copy constructor
48 Inherit copy(exc);
55 Inherit copy(std::move(exc));
59 // copy assignment
62 Inherit copy;
63 [[maybe_unused]] Inherit& result = (copy = exc);
64 ASSERT_NOEXCEPT(copy = exc);
70 Inherit copy;
71 [[maybe_unused]] Inherit& result = (copy = std::move(exc));
72 ASSERT_NOEXCEPT(copy = std::move(exc));