Home | History | Annotate | Download | only in insert.iter.cons
      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 // insert_iterator
     13 
     14 // insert_iterator(Cont& x, Cont::iterator i);
     15 
     16 #include <iterator>
     17 #include <vector>
     18 
     19 template <class C>
     20 void
     21 test(C c)
     22 {
     23     std::insert_iterator<C> i(c, c.begin());
     24 }
     25 
     26 int main()
     27 {
     28     test(std::vector<int>());
     29 }
     30