//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // back_insert_iterator // back_insert_iterator operator++(int); #include #include #include #include "nasty_containers.hpp" template void test(C c) { std::back_insert_iterator i(c); std::back_insert_iterator r = i++; r = 0; assert(c.size() == 1); assert(c.back() == 0); } int main() { test(std::vector()); test(nasty_vector()); }