[flang][runtime] Make defined formatted I/O process format elementally (#74150)
[llvm-project.git] / libcxx / test / support / test.support / test_poisoned_hash_helper.pass.cpp
blob81450748b1a9875c3de49ab5f4ad794ae2a9aeab
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 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03
11 // Test that the header `poisoned_hash_helper.h` doesn't include any
12 // headers that provide hash<T> specializations. This is required so that the
13 // 'test_library_hash_specializations_available()' function returns false
14 // by default, unless a STL header providing hash has already been included.
16 #include "poisoned_hash_helper.h"
18 #include "test_macros.h"
20 template <class T, std::size_t = sizeof(T)>
21 constexpr bool is_complete_imp(int) { return true; }
22 template <class> constexpr bool is_complete_imp(long) { return false; }
23 template <class T> constexpr bool is_complete() { return is_complete_imp<T>(0); }
25 template <class T> struct has_complete_hash {
26 enum { value = is_complete<std::hash<T> >() };
29 int main(int, char**) {
30 static_assert(LibraryHashTypes::assertTrait<has_complete_hash, false>(), "");
32 return 0;