blob: ca884cba761c88d0b1a77282e20e290cad8e89f1 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <memory>
11
12// template <class OuterAlloc, class... InnerAllocs>
13// class scoped_allocator_adaptor
14
15// typedef see below propagate_on_container_swap;
16
Howard Hinnante92c3d72010-08-19 18:39:17 +000017#include <scoped_allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000018#include <type_traits>
19
20#include "../allocators.h"
21
22int main()
23{
Howard Hinnant73d21a42010-09-04 23:28:19 +000024#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000025
26 static_assert((std::is_same<
27 std::scoped_allocator_adaptor<A1<int>>::propagate_on_container_swap,
28 std::false_type>::value), "");
29
30 static_assert((std::is_same<
31 std::scoped_allocator_adaptor<A1<int>, A2<int>>::propagate_on_container_swap,
32 std::false_type>::value), "");
33
34 static_assert((std::is_same<
35 std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>>::propagate_on_container_swap,
36 std::true_type>::value), "");
37
Howard Hinnant73d21a42010-09-04 23:28:19 +000038#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000039}