diff options
Diffstat (limited to 'llvm/unittests/Support/ErrorTest.cpp')
-rw-r--r-- | llvm/unittests/Support/ErrorTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/Support/ErrorTest.cpp b/llvm/unittests/Support/ErrorTest.cpp index d03db26..529439f 100644 --- a/llvm/unittests/Support/ErrorTest.cpp +++ b/llvm/unittests/Support/ErrorTest.cpp @@ -749,6 +749,7 @@ TEST(Error, ErrorMatchers) { "Expected: failed with Error of given type and the error is an object " "whose given property is equal to 1\n" " Actual: failed (CustomError { 0})"); + EXPECT_THAT_ERROR(make_error<CustomError>(0), Failed<ErrorInfoBase>()); EXPECT_THAT_EXPECTED(Expected<int>(0), Succeeded()); EXPECT_NONFATAL_FAILURE( |