blob: 73ea5e37f20b87ead200fb3ce35f25cd7010bdca [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
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// void insert(initializer_list<value_type> il);
15
16#include <set>
17#include <cassert>
18
19int main()
20{
Howard Hinnant73d21a42010-09-04 23:28:19 +000021#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000022 typedef std::set<int> C;
23 typedef C::value_type V;
24 C m = {10, 8};
25 m.insert({1, 2, 3, 4, 5, 6});
26 assert(m.size() == 8);
27 assert(distance(m.begin(), m.end()) == m.size());
28 C::const_iterator i = m.cbegin();
29 assert(*i == V(1));
30 assert(*++i == V(2));
31 assert(*++i == V(3));
32 assert(*++i == V(4));
33 assert(*++i == V(5));
34 assert(*++i == V(6));
35 assert(*++i == V(8));
36 assert(*++i == V(10));
Howard Hinnant73d21a42010-09-04 23:28:19 +000037#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000038}