William A. Kennington III | 85149ee | 2023-01-03 18:15:47 -0800 | [diff] [blame] | 1 | #include <stdplus/hash/array.hpp> |
2 | |||||
3 | #include <gtest/gtest.h> | ||||
4 | |||||
5 | namespace stdplus | ||||
6 | { | ||||
7 | |||||
8 | TEST(HashTuple, Basic) | ||||
9 | { | ||||
10 | std::array<std::string, 2> a{"bacon", "sound"}; | ||||
11 | std::hash<decltype(a)>{}(a); | ||||
12 | } | ||||
13 | |||||
14 | } // namespace stdplus |