Lines Matching defs:TestDebugError
1029 class TestDebugError : public ErrorInfo<TestDebugError, StringError> {
1031 using ErrorInfo<TestDebugError, StringError >::ErrorInfo; // inherit constructors
1032 TestDebugError(const Twine &S) : ErrorInfo(S, test_error_code::unspecified) {}
1057 char TestDebugError::ID;
1060 auto E1 = make_error<TestDebugError>(test_error_code::error_1);
1063 auto E2 = make_error<TestDebugError>(test_error_code::error_1,
1067 auto E3 = make_error<TestDebugError>(test_error_code::error_2);
1068 handleAllErrors(std::move(E3), [](const TestDebugError &F) {
1072 auto E4 = joinErrors(make_error<TestDebugError>(test_error_code::error_1,
1074 make_error<TestDebugError>(test_error_code::error_2));