summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/utilities/memory/default.allocator/allocator_types.pass.cpp
blob: 6a034935a30d4903d46fe78caf3691c462588685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

// <memory>

// Check that the nested types of std::allocator are provided:

// template <class T>
// class allocator
// {
// public:
//     typedef size_t    size_type;
//     typedef ptrdiff_t difference_type;
//     typedef T         value_type;
//
//     typedef true_type propagate_on_container_move_assignment;
//     typedef true_type is_always_equal;
// ...
// };

#include <memory>
#include <type_traits>
#include <cstddef>

#include "test_macros.h"

template <typename T, typename U>
TEST_CONSTEXPR_CXX20 bool test()
{
    static_assert((std::is_same<typename std::allocator<T>::size_type, std::size_t>::value), "");
    static_assert((std::is_same<typename std::allocator<T>::difference_type, std::ptrdiff_t>::value), "");
    static_assert((std::is_same<typename std::allocator<T>::value_type, T>::value), "");
    static_assert((std::is_same<typename std::allocator<T>::propagate_on_container_move_assignment, std::true_type>::value), "");
    static_assert((std::is_same<typename std::allocator<T>::is_always_equal, std::true_type>::value), "");

    std::allocator<T> a;
    std::allocator<T> a2 = a;
    a2 = a;
    std::allocator<U> a3 = a2;
    (void)a3;

    return true;
}

int main(int, char**)
{
    test<char, int>();
#ifdef _LIBCPP_VERSION // extension
    test<char const, int const>();
#endif // _LIBCPP_VERSION

#if TEST_STD_VER > 17
    static_assert(test<char, int>());
#ifdef _LIBCPP_VERSION // extension
    static_assert(test<char const, int const>());
#endif // _LIBCPP_VERSION
#endif
    return 0;
}