Home | History | Annotate | Download | only in list.modifiers
      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 // <list>
     11 
     12 // void pop_back();
     13 
     14 #include <list>
     15 #include <cassert>
     16 
     17 int main()
     18 {
     19     int a[] = {1, 2, 3};
     20     std::list<int> c(a, a+3);
     21     c.pop_back();
     22     assert(c == std::list<int>(a, a+2));
     23     c.pop_back();
     24     assert(c == std::list<int>(a, a+1));
     25     c.pop_back();
     26     assert(c.empty());
     27 }
     28