//===----------------------------------------------------------------------===// // // 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 // // template // class scoped_allocator_adaptor // typedef see below propagate_on_container_swap; #include #include #include "allocators.h" int main() { static_assert((std::is_same< std::scoped_allocator_adaptor>::propagate_on_container_swap, std::false_type>::value), ""); static_assert((std::is_same< std::scoped_allocator_adaptor, A2>::propagate_on_container_swap, std::false_type>::value), ""); static_assert((std::is_same< std::scoped_allocator_adaptor, A2, A3>::propagate_on_container_swap, std::true_type>::value), ""); }