Home
last modified time | relevance | path

Searched refs:ReadAndDeallocByRef (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ADT/
H A DFunctionExtrasTest.cpp48 unique_function<int(std::unique_ptr<int> &&)> ReadAndDeallocByRef = in TEST() local
55 EXPECT_EQ(ReadAndDeallocByRef(std::move(Ptr)), 13); in TEST()
59 EXPECT_EQ(ReadAndDeallocByRef(std::unique_ptr<int>(new int(42))), 42); in TEST()