| 167 | class CustomMapValueTest : public common_internal::ValueTest<> { |
| 168 | public: |
| 169 | CustomMapValue MakeInterface() { |
| 170 | return CustomMapValue( |
| 171 | (::new (arena()->AllocateAligned(sizeof(CustomMapValueInterfaceTest), |
| 172 | alignof(CustomMapValueInterfaceTest))) |
| 173 | CustomMapValueInterfaceTest()), |
| 174 | arena()); |
| 175 | } |
| 176 | |
| 177 | CustomMapValue MakeDispatcher() { |
| 178 | return UnsafeCustomMapValue( |
nothing calls this directly
no test coverage detected