Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / third_party / libc++ / trunk / test / iterators / predef.iterators / insert.iterators / back.insert.iter.ops / back.insert.iter.cons / container.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 // back_insert_iterator
13
14 // explicit back_insert_iterator(Cont& x);
15
16 #include <iterator>
17 #include <vector>
18 #include "nasty_containers.hpp"
19
20 template <class C>
21 void
22 test(C c)
23 {
24     std::back_insert_iterator<C> i(c);
25 }
26
27 int main()
28 {
29     test(std::vector<int>());
30     test(nasty_vector<int>());
31 }