Searched refs:MyException (Results 1 – 1 of 1) sorted by relevance
603 class MyException {}; class606 const Action<double(char ch)> a = Throw(MyException()); in TEST()607 EXPECT_THROW(a.Perform(std::make_tuple('0')), MyException); in TEST()611 const Action<double()> a = Throw(MyException()); in TEST()612 EXPECT_THROW(a.Perform(std::make_tuple()), MyException); in TEST()