blob: b9b482b21ee2e36ff92ba07660656d715f8ad552 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <experimental/memory_resource>
// template <class T> class polymorphic_allocator
// template <class U>
// void polymorphic_allocator<T>::destroy(U * ptr);
#include <experimental/memory_resource>
#include <type_traits>
#include <new>
#include <cassert>
#include <cstdlib>
#include "test_macros.h"
namespace ex = std::experimental::pmr;
int count = 0;
struct destroyable
{
destroyable() { ++count; }
~destroyable() { --count; }
};
int main(int, char**)
{
typedef ex::polymorphic_allocator<double> A;
{
A a;
static_assert(
std::is_same<decltype(a.destroy((destroyable*)nullptr)), void>::value,
"");
}
{
destroyable * ptr = ::new (std::malloc(sizeof(destroyable))) destroyable();
assert(count == 1);
A{}.destroy(ptr);
assert(count == 0);
std::free(ptr);
}
return 0;
}