blob: 1e87df6d5e0b5bf285664951f31f317d0c5be497 [file] [log] [blame]
William A. Kennington IIIb07a2eb2023-01-03 18:14:40 -08001#include <stdplus/hash/tuple.hpp>
2
3#include <string>
4
5#include <gtest/gtest.h>
6
7namespace stdplus
8{
9
10TEST(HashTuple, Basic)
11{
12 std::tuple<std::string, int> a{"bacon", 2};
13 std::hash<decltype(a)>{}(a);
14}
15
16} // namespace stdplus