]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/monotonic_buffer_resource/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / monotonic_buffer_resource / 1.cc
CommitLineData
99dee823 1// Copyright (C) 2018-2021 Free Software Foundation, Inc.
dfaa3c47
JW
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
18// { dg-options "-std=gnu++17" }
19// { dg-do compile { target c++17 } }
20
21#include <memory_resource>
22
23using std::pmr::monotonic_buffer_resource;
24using std::pmr::memory_resource;
25using std::size_t;
26
27static_assert(std::is_base_of_v<memory_resource, monotonic_buffer_resource>);
28static_assert(!std::is_abstract_v<monotonic_buffer_resource>);
29
30static_assert(std::is_default_constructible_v<monotonic_buffer_resource>);
31static_assert(std::is_destructible_v<monotonic_buffer_resource>);
32static_assert(!std::is_copy_constructible_v<monotonic_buffer_resource>);
33static_assert(!std::is_copy_assignable_v<monotonic_buffer_resource>);
34static_assert(!std::is_move_constructible_v<monotonic_buffer_resource>);
35static_assert(!std::is_move_assignable_v<monotonic_buffer_resource>);
36
37static_assert(std::is_constructible_v<monotonic_buffer_resource,
38 memory_resource*>);
39static_assert(std::is_constructible_v<monotonic_buffer_resource,
40 size_t, memory_resource*>);
41static_assert(std::is_constructible_v<monotonic_buffer_resource,
42 void*, size_t, memory_resource*>);
43
44static_assert(std::is_constructible_v<monotonic_buffer_resource,
45 size_t>);
46static_assert(std::is_constructible_v<monotonic_buffer_resource,
47 void*, size_t>);
48
49// Unary constructors are explicit.
50static_assert(!std::is_convertible_v<memory_resource*,
51 monotonic_buffer_resource>);
52static_assert(!std::is_convertible_v<size_t,
53 monotonic_buffer_resource>);