4f3742f62f2bb900e3d1dbdcc85afafcdb228a95
[platform/framework/web/crosswalk.git] / src / third_party / libc++ / trunk / test / iterators / predef.iterators / insert.iterators / front.insert.iter.ops / front.inserter / test.pass.cpp
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // <iterator>
11
12 // template <BackInsertionContainer Cont>
13 //   front_insert_iterator<Cont>
14 //   front_inserter(Cont& x);
15
16 #include <iterator>
17 #include <list>
18 #include <cassert>
19
20 template <class C>
21 void
22 test(C c)
23 {
24     std::front_insert_iterator<C> i = std::front_inserter(c);
25     i = 0;
26     assert(c.size() == 1);
27     assert(c.front() == 0);
28 }
29
30 int main()
31 {
32     test(std::list<int>());
33 }