initializer_list.pass.cpp revision bc8d3f97eb5c958007f2713238472e0c1c8fe02c
1//===----------------------------------------------------------------------===//
2//
3// ��������������������The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <set>
11
12// class set
13
14// set(initializer_list<value_type> il, const key_compare& comp = key_compare());
15
16#include <set>
17#include <cassert>
18
19int main()
20{
21#ifdef _LIBCPP_MOVE
22    typedef std::set<int> C;
23    typedef C::value_type V;
24    C m = {1, 2, 3, 4, 5, 6};
25    assert(m.size() == 6);
26    assert(distance(m.begin(), m.end()) == 6);
27    C::const_iterator i = m.cbegin();
28    assert(*i == V(1));
29    assert(*++i == V(2));
30    assert(*++i == V(3));
31    assert(*++i == V(4));
32    assert(*++i == V(5));
33    assert(*++i == V(6));
34#endif
35}
36