Lines Matching refs:array
19 test_safe_allocation<T> array; in tests() local
20 CHECK(array.data() == nullptr); in tests()
21 CHECK(array.size() == 0); in tests()
22 CHECK(array.begin() == array.end()); in tests()
25 test_safe_allocation<T> array{}; in tests() local
26 CHECK(array.data() == nullptr); in tests()
27 CHECK(array.size() == 0); in tests()
28 CHECK(array.begin() == array.end()); in tests()
31 test_safe_allocation<T> array = test_safe_allocation<T>(); in tests() local
32 CHECK(array.data() == nullptr); in tests()
33 CHECK(array.size() == 0); in tests()
34 CHECK(array.begin() == array.end()); in tests()