| 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | // UNSUPPORTED: c++03, c++11, c++14, c++17 |
| 10 | // UNSUPPORTED: availability-pmr-missing |
| 11 | |
| 12 | // test_memory_resource requires RTTI for dynamic_cast |
| 13 | // UNSUPPORTED: no-rtti |
| 14 | |
| 15 | #include <memory_resource> |
| 16 | #include <cstddef> |
| 17 | #include <type_traits> |
| 18 | |
| 19 | static_assert(std::is_same_v<std::pmr::polymorphic_allocator<>, std::pmr::polymorphic_allocator<std::byte>>); |
| 20 | |