diff --git a/hash/test/container_fwd_test.cpp b/hash/test/container_fwd_test.cpp index 512e5d3..caf42eb 100644 --- a/hash/test/container_fwd_test.cpp +++ b/hash/test/container_fwd_test.cpp @@ -62,6 +62,11 @@ static void test(std::complex const&) { } +template +static void test(std::pair const&) +{ +} + #include #include #include @@ -70,6 +75,7 @@ static void test(std::complex const&) #include #include #include +#include int main() { @@ -84,6 +90,7 @@ int main() std::bitset<10> x9; std::string x10; std::complex x11; + std::pair, char***> x12; test(x1); test(x2); @@ -96,6 +103,7 @@ int main() test(x9); test(x10); test(x11); + test(x12); return 0; }