29 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8 9// UNSUPPORTED: c++0310 11// <memory>12 13// Test that <memory> provides all of the arithmetic, enum, and pointer14// hash specializations.15 16#include <memory>17 18#include <functional>19 20#include "poisoned_hash_helper.h"21 22#include "test_macros.h"23 24int main(int, char**) {25 test_library_hash_specializations_available();26 27 return 0;28}29