]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/collections/hash/map.rs
More diagnostic items for Clippy usage
[rust.git] / src / libstd / collections / hash / map.rs
index 706b388f7832331c3cf86813ad474dedf2fa3ad8..e6da7426eb4afc08a88d7a2d12572ef17986a367 100644 (file)
 /// ```
 
 #[derive(Clone)]
+#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_type")]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct HashMap<K, V, S = RandomState> {
     base: base::HashMap<K, V, S>,