rust-clippy/tests/ui/zero_sized_hashmap_values.stderr

108 lines
3.2 KiB
Text

error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:5:28
|
LL | const CONST_NOT_OK: Option<HashMap<String, ()>> = None;
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
= note: `-D clippy::zero-sized-map-values` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::zero_sized_map_values)]`
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:9:30
|
LL | static STATIC_NOT_OK: Option<HashMap<String, ()>> = None;
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:13:17
|
LL | type NotOkMap = HashMap<String, ()>;
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:18:11
|
LL | NotOk(HashMap<String, ()>),
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:24:13
|
LL | not_ok: HashMap<String, ()>,
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:26:22
|
LL | also_not_ok: Vec<HashMap<usize, ()>>,
| ^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:35:30
|
LL | fn weird_map(&self, map: HashMap<usize, ()>);
| ^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:44:25
|
LL | fn not_ok(&self) -> HashMap<String, ()> {
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:62:14
|
LL | fn test(map: HashMap<String, ()>, key: &str) -> HashMap<String, ()> {
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:62:49
|
LL | fn test(map: HashMap<String, ()>, key: &str) -> HashMap<String, ()> {
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:73:34
|
LL | let _: HashMap<String, ()> = HashMap::new();
| ^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:73:12
|
LL | let _: HashMap<String, ()> = HashMap::new();
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using a set instead
error: map with zero-sized value type
--> tests/ui/zero_sized_hashmap_values.rs:78:12
|
LL | let _: HashMap<_, _> = std::iter::empty::<(String, ())>().collect();
| ^^^^^^^^^^^^^
|
= help: consider using a set instead
error: aborting due to 13 previous errors