blob: 1e40881907b5a853bf6b11d04f32ae8cf3e2d5e8 [file] [log] [blame]
Eric Fiseliera9e65962016-10-12 07:46:20 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// UNSUPPORTED: c++98, c++03, c++11, c++14
11// <optional>
12
13// template <class T> struct hash<optional<T>>;
14
15#include <optional>
16#include <string>
17#include <memory>
18#include <cassert>
19
Eric Fiselierf9127592017-01-21 00:02:12 +000020#include "poisoned_hash_helper.hpp"
21
22struct A {};
23struct B {};
24
Michael Park41c4de42017-03-23 06:21:24 +000025namespace std {
26
Eric Fiselierf9127592017-01-21 00:02:12 +000027template <>
Michael Park41c4de42017-03-23 06:21:24 +000028struct hash<B> {
Eric Fiselierf9127592017-01-21 00:02:12 +000029 size_t operator()(B const&) { return 0; }
30};
Eric Fiseliera9e65962016-10-12 07:46:20 +000031
Michael Park41c4de42017-03-23 06:21:24 +000032}
33
Eric Fiseliera9e65962016-10-12 07:46:20 +000034int main()
35{
36 using std::optional;
37 const std::size_t nullopt_hash =
38 std::hash<optional<double>>{}(optional<double>{});
39
40 {
41 typedef int T;
42 optional<T> opt;
Marshall Clow7c803382017-03-23 02:40:28 +000043 ASSERT_NOT_NOEXCEPT(std::hash<optional<T>>()(opt));
Eric Fiseliera9e65962016-10-12 07:46:20 +000044 assert(std::hash<optional<T>>{}(opt) == nullopt_hash);
45 opt = 2;
46 assert(std::hash<optional<T>>{}(opt) == std::hash<T>{}(*opt));
47 }
48 {
49 typedef std::string T;
50 optional<T> opt;
Marshall Clow7c803382017-03-23 02:40:28 +000051 ASSERT_NOT_NOEXCEPT(std::hash<optional<T>>()(opt));
Eric Fiseliera9e65962016-10-12 07:46:20 +000052 assert(std::hash<optional<T>>{}(opt) == nullopt_hash);
53 opt = std::string("123");
54 assert(std::hash<optional<T>>{}(opt) == std::hash<T>{}(*opt));
55 }
56 {
57 typedef std::unique_ptr<int> T;
58 optional<T> opt;
Marshall Clow7c803382017-03-23 02:40:28 +000059 ASSERT_NOT_NOEXCEPT(std::hash<optional<T>>()(opt));
Eric Fiseliera9e65962016-10-12 07:46:20 +000060 assert(std::hash<optional<T>>{}(opt) == nullopt_hash);
61 opt = std::unique_ptr<int>(new int(3));
62 assert(std::hash<optional<T>>{}(opt) == std::hash<T>{}(*opt));
63 }
Eric Fiselierf9127592017-01-21 00:02:12 +000064 {
65 test_hash_enabled_for_type<std::optional<int> >();
66 test_hash_enabled_for_type<std::optional<int*> >();
67 test_hash_enabled_for_type<std::optional<const int> >();
68 test_hash_enabled_for_type<std::optional<int* const> >();
69
70 test_hash_disabled_for_type<std::optional<A>>();
71 test_hash_disabled_for_type<std::optional<const A>>();
72
73 test_hash_enabled_for_type<std::optional<B>>();
74 test_hash_enabled_for_type<std::optional<const B>>();
75 }
Eric Fiseliera9e65962016-10-12 07:46:20 +000076}