| 239 | // ── Array specialization tests ────────────────────────────────────────────── |
| 240 | |
| 241 | struct ArrayObj { |
| 242 | int value; |
| 243 | static int destroy_count; |
| 244 | ArrayObj() : value(0) {} |
| 245 | explicit ArrayObj(int v) : value(v) {} |
| 246 | ~ArrayObj() { ++destroy_count; } |
| 247 | }; |
| 248 | int ArrayObj::destroy_count = 0; |
| 249 | |
| 250 | class UniquePtrArrayTest : public ::testing::Test { |
nothing calls this directly
no outgoing calls
no test coverage detected