Commit 64368e05 authored by Abseil Team's avatar Abseil Team Committed by Gennadiy Civil
Browse files

Googletest export

Remove redundant Base/Derived types.

PiperOrigin-RevId: 222243634
parent bb7c0ecb
......@@ -1146,8 +1146,6 @@ TEST(WithArgsTest, ReturnReference) {
}
TEST(WithArgsTest, InnerActionWithConversion) {
struct Base {};
struct Derived : Base {};
Action<Derived*()> inner = [] { return nullptr; };
Action<Base*(double)> a = testing::WithoutArgs(inner);
EXPECT_EQ(nullptr, a.Perform(std::make_tuple(1.1)));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment