blob: 73d2892deb69e48bc1a63303d0466067f5a6ea4a [file] [log] [blame]
#include <stdplus/hash/array.hpp>
#include <gtest/gtest.h>
namespace stdplus
{
TEST(HashTuple, Basic)
{
std::array<std::string, 2> a{"bacon", "sound"};
std::hash<decltype(a)>{}(a);
}
} // namespace stdplus