]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/libcxx/containers/sequences/vector/db_index.pass.cpp
Vendor import of libc++ trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / libcxx / containers / sequences / vector / db_index.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 // Index vector 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     assert(c[0] == 0);
34     c.clear();
35     assert(c[0] == 0);
36     assert(false);
37     }
38 #if TEST_STD_VER >= 11
39     {
40     typedef int T;
41     typedef std::vector<T, min_allocator<T>> C;
42     C c(1);
43     assert(c[0] == 0);
44     c.clear();
45     assert(c[0] == 0);
46     assert(false);
47     }
48 #endif
49 }
50
51 #else
52
53 int main()
54 {
55 }
56
57 #endif