xref: /llvm-project/libcxx/test/std/utilities/function.objects/unord.hash/enabled_hashes.pass.cpp (revision 31cbe0f240f660f15602c96b787c58a26f17e179)
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // UNSUPPORTED: c++03
10 
11 // <functional>
12 
13 // Test that <functional> provides all of the arithmetic, enum, and pointer
14 // hash specializations.
15 
16 #include <functional>
17 
18 #include "poisoned_hash_helper.h"
19 
20 #include "test_macros.h"
21 
main(int,char **)22 int main(int, char**) {
23   test_library_hash_specializations_available();
24 
25   return 0;
26 }
27