1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 // deque(initializer_list<value_type> il);
15 #include "asan_testing.h"
19 #include "test_macros.h"
20 #include "min_allocator.h"
25 std::deque
<int> d
= {3, 4, 5, 6};
26 assert(d
.size() == 4);
31 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(d
));
34 std::deque
<int, min_allocator
<int>> d
= {3, 4, 5, 6};
35 assert(d
.size() == 4);
40 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(d
));