OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / unordered_multimap / requirements / typedefs.cc
1 // { dg-do compile }
2 // { dg-options "-std=gnu++0x" }
3
4 // 2008-08-27  Paolo Carlini  <paolo.carlini@oracle.com>
5
6 // Copyright (C) 2008 Free Software Foundation
7 //
8 // This file is part of the GNU ISO C++ Library.  This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2, or (at your option)
12 // any later version.
13
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING.  If not, write to the Free
21 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22 // USA.
23
24 #include <unordered_map>
25
26 void test01()
27 {
28   // Check for required typedefs
29   typedef std::unordered_multimap<int, int>       test_type;
30
31   typedef test_type::key_type                     key_type;
32   typedef test_type::value_type                   value_type;
33   typedef test_type::mapped_type                  mapped_type;
34   typedef test_type::hasher                       hasher;
35   typedef test_type::key_equal                    key_equal;
36   typedef test_type::allocator_type               allocator_type;
37   typedef test_type::pointer                      pointer;
38   typedef test_type::const_pointer                const_pointer;
39   typedef test_type::reference                    reference;
40   typedef test_type::const_reference              const_reference;
41   typedef test_type::size_type                    size_type;
42   typedef test_type::difference_type              difference_type;
43   typedef test_type::iterator                     iterator;
44   typedef test_type::const_iterator               const_iterator;
45   typedef test_type::local_iterator               local_iterator;
46   typedef test_type::const_local_iterator         const_local_iterator;
47 }