Home | History | Annotate | Download | only in inserter
      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 <InsertionContainer Cont>
     13 //   insert_iterator<Cont>
     14 //   inserter(Cont& x, Cont::iterator i);
     15 
     16 #include <iterator>
     17 #include <vector>
     18 #include <cassert>
     19 #include "nasty_containers.hpp"
     20 
     21 template <class C>
     22 void
     23 test(C c)
     24 {
     25     std::insert_iterator<C> i = std::inserter(c, c.end());
     26     i = 0;
     27     assert(c.size() == 1);
     28     assert(c.back() == 0);
     29 }
     30 
     31 int main()
     32 {
     33     test(std::vector<int>());
     34     test(nasty_vector<int>());
     35 }
     36