xref: /llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/enabled_hash.pass.cpp (revision 69d5a6662115499198ebfa07a081e98a6ce4b915)
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 // <memory>
12 
13 // Test that <memory> provides all of the arithmetic, enum, and pointer
14 // hash specializations.
15 
16 #include <memory>
17 
18 #include <functional>
19 
20 #include "poisoned_hash_helper.h"
21 
22 #include "test_macros.h"
23 
main(int,char **)24 int main(int, char**) {
25   test_library_hash_specializations_available();
26 
27   return 0;
28 }
29