blob: 1fa7291203ed4f7087c2b615cdcb724644c25846 [file] [log] [blame]
Howard Hinnantc52f43e2010-08-22 00:59:46 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantc52f43e2010-08-22 00:59:46 +00007//
8//===----------------------------------------------------------------------===//
9
10// <memory>
11
12// template <class Alloc>
13// struct allocator_traits
14// {
Marshall Clow08b4f3f2013-08-27 20:22:15 +000015// static size_type max_size(const allocator_type& a) noexcept;
Howard Hinnantc52f43e2010-08-22 00:59:46 +000016// ...
17// };
18
19#include <memory>
20#include <new>
21#include <type_traits>
22#include <cassert>
23
24template <class T>
25struct A
26{
27 typedef T value_type;
28
29};
30
31template <class T>
32struct B
33{
34 typedef T value_type;
35
36 size_t max_size() const
37 {
38 return 100;
39 }
40};
41
42int main()
43{
44#ifndef _LIBCPP_HAS_NO_ADVANCED_SFINAE
45 {
46 A<int> a;
47 assert(std::allocator_traits<A<int> >::max_size(a) ==
Dan Albert1d4a1ed2016-05-25 22:36:09 -070048 std::numeric_limits<std::size_t>::max());
Howard Hinnantc52f43e2010-08-22 00:59:46 +000049 }
50 {
51 const A<int> a = {};
52 assert(std::allocator_traits<A<int> >::max_size(a) ==
Dan Albert1d4a1ed2016-05-25 22:36:09 -070053 std::numeric_limits<std::size_t>::max());
Howard Hinnantc52f43e2010-08-22 00:59:46 +000054 }
55#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
56 {
57 B<int> b;
58 assert(std::allocator_traits<B<int> >::max_size(b) == 100);
59 }
60 {
61 const B<int> b = {};
62 assert(std::allocator_traits<B<int> >::max_size(b) == 100);
63 }
Marshall Clow08b4f3f2013-08-27 20:22:15 +000064#if __cplusplus >= 201103
65 {
66 std::allocator<int> a;
67 static_assert(noexcept(std::allocator_traits<std::allocator<int>>::max_size(a)) == true, "");
68 }
69#endif
Howard Hinnantc52f43e2010-08-22 00:59:46 +000070}