Home
last modified time | relevance | path

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

/third_party/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc671 class NonMoveConstructible { in TEST() class
673 NonMoveConstructible(NonMoveConstructible&&) = delete; in TEST()
674 NonMoveConstructible& operator=(NonMoveConstructible&&) { return *this; } in TEST() argument
679 NonMoveAssignable& operator=(NonMoveConstructible&&) = delete; in TEST()
689 EXPECT_FALSE(std::is_move_constructible<NonMoveConstructible>::value); in TEST()
690 EXPECT_TRUE(std::is_move_assignable<NonMoveConstructible>::value); in TEST()
691 EXPECT_FALSE(internal::IsMovable<NonMoveConstructible>::value); in TEST()