Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
stdplus
/
1c8d0aefd05c8b7be369c52494e91d77ca657e40
/
.
/
test
/
hash
/
tuple.cpp
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