summaryrefslogtreecommitdiffstats
path: root/library/std/src/collections/hash/map
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/collections/hash/map')
-rw-r--r--library/std/src/collections/hash/map/tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/library/std/src/collections/hash/map/tests.rs b/library/std/src/collections/hash/map/tests.rs
index cb3032719..65634f206 100644
--- a/library/std/src/collections/hash/map/tests.rs
+++ b/library/std/src/collections/hash/map/tests.rs
@@ -1115,3 +1115,9 @@ fn from_array() {
// that's a problem!
let _must_not_require_type_annotation = HashMap::from([(1, 2)]);
}
+
+#[test]
+fn const_with_hasher() {
+ const X: HashMap<(), (), ()> = HashMap::with_hasher(());
+ assert_eq!(X.len(), 0);
+}