//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // void pop_front(); #include #include int main() { int a[] = {1, 2, 3}; std::list c(a, a+3); c.pop_front(); assert(c == std::list(a+1, a+3)); c.pop_front(); assert(c == std::list(a+2, a+3)); c.pop_front(); assert(c.empty()); }