1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // <list>
10 
11 // Call erase(const_iterator position) with end()
12 
13 // REQUIRES: has-unix-headers
14 // UNSUPPORTED: c++03
15 // XFAIL: use_system_cxx_lib && target={{.+}}-apple-macosx{{10.9|10.10|10.11|10.12|10.13|10.14|10.15|11.0|12.0}}
16 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_ENABLE_ASSERTIONS=1
17 
18 #include <list>
19 
20 #include "check_assertion.h"
21 
main(int,char **)22 int main(int, char**) {
23     int a1[] = {1, 2, 3};
24     std::list<int> l1(a1, a1+3);
25     std::list<int>::const_iterator i = l1.end();
26     TEST_LIBCPP_ASSERT_FAILURE(l1.erase(i), "list::erase(iterator) called with a non-dereferenceable iterator");
27 
28     return 0;
29 }
30