Lines Matching defs:exc
41 Inherit exc;
47 Inherit exc;
48 Inherit copy(exc);
49 ASSERT_NOEXCEPT(Inherit(exc));
54 Inherit exc;
55 Inherit copy(std::move(exc));
56 ASSERT_NOEXCEPT(Inherit(std::move(exc)));
61 Inherit exc;
63 [[maybe_unused]] Inherit& result = (copy = exc);
64 ASSERT_NOEXCEPT(copy = exc);
69 Inherit exc;
71 [[maybe_unused]] Inherit& result = (copy = std::move(exc));
72 ASSERT_NOEXCEPT(copy = std::move(exc));
77 Inherit exc;
78 char const* what = exc.what();
80 ASSERT_NOEXCEPT(exc.what());