// Copyright (C) 2016-2022 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // . // { dg-do run { target c++11 } } #include #include template class std::allocator; void test01() { int i; using alloc_type = std::allocator; alloc_type a; std::allocator_traits::construct(a, &i, 42); VERIFY( i == 42 ); std::allocator_traits::destroy(a, &i); } static_assert( std::allocator::propagate_on_container_move_assignment(), "POCMA trait should always be present" ); static_assert( std::allocator::is_always_equal(), "is_always_equal trait should always be present" ); static_assert( std::is_same::size_type, std::size_t>(), "size_type is size_t" ); static_assert( std::is_same::difference_type, std::ptrdiff_t>(), "size_type is size_t" ); // These properties are formally unspecified, but have always been true for // the libstdc++ definition of allocator. static_assert( std::is_trivially_default_constructible>::value, "explicit specialization has trivial default constructor"); static_assert( std::is_trivially_copy_constructible>::value, "explicit specialization has trivial copy constructor"); static_assert( std::is_trivially_move_constructible>::value, "explicit specialization has trivial move constructor"); static_assert( std::is_trivially_destructible>::value, "explicit specialization has trivial destructor"); #if __cplusplus >= 202002L // C++20 removes the allocator explicit specialization, so it can now be // constructed using the converting constructor from other specializations. static_assert( std::is_nothrow_constructible_v, std::allocator> ); template concept has_pointer = requires { typename T::pointer; }; template concept has_const_pointer = requires { typename T::const_pointer; }; template concept has_size_type = requires { typename T::size_type; }; template concept has_difference_type = requires { typename T::difference_type; }; // These were removed for C++20 static_assert( ! has_pointer> ); static_assert( ! has_const_pointer> ); #else static_assert( std::is_same::pointer, void*>(), "pointer is void*" ); static_assert( std::is_same::const_pointer, const void*>(), "const_pointer is const void*" ); #endif // C++20 void test02() { std::allocator av; int* p = std::allocator().allocate(1); const int* c = p; std::allocator_traits>::construct(av, c, 0); volatile int* v = p; std::allocator_traits>::construct(av, v, 0); const volatile int* cv = p; std::allocator_traits>::construct(av, cv, 0); std::allocator().deallocate(p, 1); } int main() { test01(); test02(); }