1//===----------------------------------------------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9// UNSUPPORTED: c++03
10
11// <deque>
12
13// void assign(initializer_list<value_type> il);
14
15#include "asan_testing.h"
16#include <deque>
17#include <cassert>
18
19#include "test_macros.h"
20#include "min_allocator.h"
21
22int main(int, char**) {
23 {
24 std::deque<int> d;
25 d.assign(l: {3, 4, 5, 6});
26 assert(d.size() == 4);
27 assert(d[0] == 3);
28 assert(d[1] == 4);
29 assert(d[2] == 5);
30 assert(d[3] == 6);
31 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(d));
32 }
33 {
34 std::deque<int, min_allocator<int>> d;
35 d.assign({3, 4, 5, 6});
36 assert(d.size() == 4);
37 assert(d[0] == 3);
38 assert(d[1] == 4);
39 assert(d[2] == 5);
40 assert(d[3] == 6);
41 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(d));
42 }
43
44 return 0;
45}
46

source code of libcxx/test/std/containers/sequences/deque/deque.cons/assign_initializer_list.pass.cpp