Home | History | Annotate | Download | only in back.insert.iter.op++
      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 // back_insert_iterator<Cont> operator++(int);
     15 
     16 #include <iterator>
     17 #include <vector>
     18 #include <cassert>
     19 
     20 template <class C>
     21 void
     22 test(C c)
     23 {
     24     std::back_insert_iterator<C> i(c);
     25     std::back_insert_iterator<C> r = i++;
     26     r = 0;
     27     assert(c.size() == 1);
     28     assert(c.back() == 0);
     29 }
     30 
     31 int main()
     32 {
     33     test(std::vector<int>());
     34 }
     35