Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_set / requirements / typedefs.cc
blob5af4d07b7ad529a8b9865ecc2b3913afa4101606
1 // { dg-do compile }
2 // 2008-08-27 Paolo Carlini <paolo.carlini@oracle.com>
4 // Copyright (C) 2008-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.
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.
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/>.
21 // 6.3.4.3 unordered_set
23 #include <tr1/unordered_set>
25 void test01()
27 // Check for required typedefs
28 typedef std::tr1::unordered_set<int> test_type;
30 typedef test_type::key_type key_type;
31 typedef test_type::value_type value_type;
32 typedef test_type::hasher hasher;
33 typedef test_type::key_equal key_equal;
34 typedef test_type::allocator_type allocator_type;
35 typedef test_type::pointer pointer;
36 typedef test_type::const_pointer const_pointer;
37 typedef test_type::reference reference;
38 typedef test_type::const_reference const_reference;
39 typedef test_type::size_type size_type;
40 typedef test_type::difference_type difference_type;
41 typedef test_type::iterator iterator;
42 typedef test_type::const_iterator const_iterator;
43 typedef test_type::local_iterator local_iterator;
44 typedef test_type::const_local_iterator const_local_iterator;