We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3990ceb commit cbb6e08Copy full SHA for cbb6e08
test/hashmap/hashmap_iterator.cpp
@@ -1,6 +1,20 @@
1
#include <core/containers/hashmap.h>
2
#include <core/algorithms/find.h>
3
4
+GTEST_TEST(hashmap, dtes)
5
+{
6
+ hud::hashmap<hud_test::non_bitwise_type, hud_test::non_bitwise_type> map {
7
+ {1, 11},
8
+ {2, 22},
9
+ {3, 33},
10
+ {4, 44}
11
+ };
12
+
13
+ auto it = map.begin();
14
+ // Should not be possible
15
+ auto s = hud::move(*it);
16
+}
17
18
GTEST_TEST(hashmap, iterators)
19
{
20
const auto test = []()
0 commit comments