brintos

brintos / llvm-project-archived public Read only

0
0
Text · 736 B · e36e560 Raw
26 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++03, c++11, c++1410 11// <filesystem>12 13// Test that <filesystem> provides all of the arithmetic, enum, and pointer14// hash specializations.15 16#include <filesystem>17#include "poisoned_hash_helper.h"18namespace fs = std::filesystem;19 20int main(int, char**) {21  test_library_hash_specializations_available();22  test_hash_enabled<fs::path>();23 24  return 0;25}26