//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // front_insert_iterator // front_inserter(Cont& x); #include #include #include #include "nasty_containers.hpp" template void test(C c) { std::front_insert_iterator i = std::front_inserter(c); i = 0; assert(c.size() == 1); assert(c.front() == 0); } int main() { test(std::list()); test(nasty_list()); }