1// { dg-options "-std=gnu++11" }
2//
3// Copyright (C) 2011-2015 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library.  This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14// GNU General Public License for more details.
15//
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING3.  If not see
18// <http://www.gnu.org/licenses/>.
19
20//
21// NB: This file is for testing memory with NO OTHER INCLUDES.
22
23#include <memory>
24
25// { dg-do compile }
26
27template<typename T>
28void test01()
29{
30  // Check for required typedefs
31  typedef std::allocator_traits<T>                  test_type;
32  typedef typename test_type::allocator_type        allocator_type;
33  typedef typename test_type::value_type            value_type;
34  typedef typename test_type::pointer               pointer;
35  typedef typename test_type::const_pointer         const_pointer;
36  typedef typename test_type::void_pointer          void_pointer;
37  typedef typename test_type::const_void_pointer    const_void_pointer;
38  typedef typename test_type::difference_type       difference_type;
39  typedef typename test_type::size_type             size_type;
40  typedef typename test_type::propagate_on_container_copy_assignment
41    propagate_on_container_copy_assignment;
42  typedef typename test_type::propagate_on_container_move_assignment
43    propagate_on_container_move_assignment;
44  typedef typename test_type::propagate_on_container_swap
45    propagate_on_container_swap;
46}
47
48struct S { };
49
50int main()
51{
52  test01<std::allocator<int>>();
53  test01<std::allocator<S>>();
54}
55