| 884 | }; |
| 885 | |
| 886 | TEST(SmallVectorCustomTest, NoAssignTest) { |
| 887 | int x = 0; |
| 888 | SmallVector<NotAssignable, 2> vec; |
| 889 | vec.push_back(NotAssignable(x)); |
| 890 | x = 42; |
| 891 | EXPECT_EQ(42, vec.pop_back_val().x); |
| 892 | } |
| 893 | |
| 894 | struct MovedFrom { |
| 895 | bool has_value; |
nothing calls this directly
no test coverage detected