Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 20_util / allocator_traits / members / select.cc
1 // { dg-options "-std=gnu++0x" }
2 // { dg-do compile }
3
4 // Copyright (C) 2011-2013 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21 #include <memory>
22 #include <testsuite_hooks.h>
23
24 struct X { };
25
26 template<typename T>
27 struct alloc1
28 {
29   typedef T value_type;
30
31   int id;
32 };
33
34 template<typename T>
35 struct alloc2
36 {
37   typedef T value_type;
38
39   int id;
40
41   alloc2 select_on_container_copy_construction() const
42   { return alloc2{id+1}; }
43 };
44
45
46 void test01()
47 {
48   typedef std::allocator_traits<alloc1<X>> traits_type;
49   traits_type::allocator_type a{1};
50   const traits_type::allocator_type& a2
51     = traits_type::select_on_container_copy_construction(a);
52   VERIFY( a2.id == a.id );
53 }
54
55 void test02()
56 {
57   typedef std::allocator_traits<alloc1<X>> traits_type;
58   traits_type::allocator_type a{1};
59   const traits_type::allocator_type& a2
60     = traits_type::select_on_container_copy_construction(a);
61   VERIFY( a2.id != a.id );
62 }
63
64 int main()
65 {
66   test01();
67   test02();
68 }