Merged with mainline at revision 128810.
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / hash / operators / size_t.cc
blob89e82cd4a9079c4011769771f2cdba0caa359376
1 // { dg-options "-std=gnu++0x" }
2 // 2007-08-20 <benjamin@redhat.com>
3 //
4 // Copyright (C) 2007 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 2, 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 COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 #include <functional>
23 #include <system_error>
24 #include <testsuite_hooks.h>
26 template<typename T>
27 void
28 do_test()
30 bool test __attribute__((unused)) = true;
32 typedef T value_type;
33 typedef std::hash<value_type> hash_type;
34 using std::size_t;
36 value_type v; // default initialized is fine, same value all that matters.
37 hash_type h1;
38 size_t r1 = size_t(h1(v));
40 hash_type h2;
41 size_t r2 = size_t(h2(v));
43 VERIFY( r1 == r2 );
46 void test01()
48 do_test<std::error_code>();
51 int main()
53 test01();
54 return 0;