[03/46] Remove unnecessary update of NUM_SLP_USES
[official-gcc.git] / libstdc++-v3 / testsuite / experimental / memory_resource / 70966.cc
blobc0173ffa7a980c5bb234736bcbde2b3aaf912bf3
1 // Copyright (C) 2018 Free Software Foundation, Inc.
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.
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.
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/>.
18 // { dg-do run { target c++14 } }
20 #include <experimental/memory_resource>
22 namespace pmr = std::experimental::pmr;
24 struct X
26 pmr::memory_resource* res = nullptr;
27 void* ptr = nullptr;
28 static constexpr std::size_t n = 64;
30 constexpr X() { }
32 explicit
33 X(pmr::memory_resource* r) : res(r), ptr(r->allocate(n)) { }
35 ~X() { if (ptr) res->deallocate(ptr, n); }
38 void
39 swap(X& lhs, X& rhs) {
40 std::swap(lhs.res, rhs.res);
41 std::swap(lhs.ptr, rhs.ptr);
44 void
45 test01()
47 static X x1;
48 X x2(pmr::new_delete_resource());
49 swap(x1, x2);
50 // Now x1 will deallocate the memory during destruction of static objects.
53 int main()
55 test01();