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