]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/libcxx/containers/sequences/vector/db_iterators_5.pass.cpp
Vendor import of libc++ trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / libcxx / containers / sequences / vector / db_iterators_5.pass.cpp
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 // <vector>
11
12 // Add to iterator out of bounds.
13
14 #if _LIBCPP_DEBUG >= 1
15
16 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
17
18 #include <vector>
19 #include <cassert>
20 #include <iterator>
21 #include <exception>
22 #include <cstdlib>
23
24 #include "test_macros.h"
25 #include "min_allocator.h"
26
27 int main()
28 {
29     {
30     typedef int T;
31     typedef std::vector<T> C;
32     C c(1);
33     C::iterator i = c.begin();
34     i += 1;
35     assert(i == c.end());
36     i = c.begin();
37     i += 2;
38     assert(false);
39     }
40 #if TEST_STD_VER >= 11
41     {
42     typedef int T;
43     typedef std::vector<T, min_allocator<T>> C;
44     C c(1);
45     C::iterator i = c.begin();
46     i += 1;
47     assert(i == c.end());
48     i = c.begin();
49     i += 2;
50     assert(false);
51     }
52 #endif
53 }
54
55 #else
56
57 int main()
58 {
59 }
60
61 #endif