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