erase_iter_db1.pass.cpp (821B)
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 // Can't test the system lib because this test enables debug mode 11 // UNSUPPORTED: with_system_cxx_lib 12 13 // <list> 14 15 // Call erase(const_iterator position) with end() 16 17 #define _LIBCPP_DEBUG 1 18 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) 19 20 #include <list> 21 #include <cassert> 22 #include <cstdlib> 23 24 int main() 25 { 26 int a1[] = {1, 2, 3}; 27 std::list<int> l1(a1, a1+3); 28 std::list<int>::const_iterator i = l1.end(); 29 l1.erase(i); 30 assert(false); 31 }