summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc
diff options
context:
space:
mode:
authorFrançois Dumont <fdumont@gcc.gnu.org>2015-05-19 19:57:09 +0000
committerFrançois Dumont <fdumont@gcc.gnu.org>2015-05-19 19:57:09 +0000
commit90f0d17641cc5f0b3fabbc64fda961160a587840 (patch)
tree58c3a6e77cb5d8baf186c005aa640c04c35bbceb /libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc
parent515ae71b1c388aea49096ff7c971ac3addf239b3 (diff)
downloadgcc-90f0d17641cc5f0b3fabbc64fda961160a587840.tar.gz
66055.cc: Add constructor invocations.
2015-05-19 François Dumont <fdumont@gcc.gnu.org> * testsuite/23_containers/unordered_map/cons/66055.cc: Add constructor invocations. * testsuite/23_containers/unordered_multimap/cons/66055.cc: Likewise. * testsuite/23_containers/unordered_multiset/cons/66055.cc: Likewise. * testsuite/23_containers/unordered_set/cons/66055.cc: Likewise. From-SVN: r223413
Diffstat (limited to 'libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc')
-rw-r--r--libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc b/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc
index c4d68ec16da..d99d3524a57 100644
--- a/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc
+++ b/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc
@@ -28,3 +28,7 @@ using alloc_type = test_type::allocator_type;
test_type h1(10, alloc_type());
test_type h2(10, hasher_type(), alloc_type());
+test_type h3(h1.begin(), h1.end(), 10, alloc_type());
+test_type h4(h1.begin(), h1.end(), 10, hasher_type(), alloc_type());
+test_type h5({ { 1, 1 } }, 10, alloc_type());
+test_type h6({ { 1, 1 } }, 10, hasher_type(), alloc_type());