summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr')
-rw-r--r--src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr107
1 files changed, 107 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr b/src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr
new file mode 100644
index 000000000..79770bf90
--- /dev/null
+++ b/src/tools/clippy/tests/ui/zero_sized_hashmap_values.stderr
@@ -0,0 +1,107 @@
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:5:28
+ |
+LL | const CONST_NOT_OK: Option<HashMap<String, ()>> = None;
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = note: `-D clippy::zero-sized-map-values` implied by `-D warnings`
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:8:30
+ |
+LL | static STATIC_NOT_OK: Option<HashMap<String, ()>> = None;
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:11:17
+ |
+LL | type NotOkMap = HashMap<String, ()>;
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:15:11
+ |
+LL | NotOk(HashMap<String, ()>),
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:20:13
+ |
+LL | not_ok: HashMap<String, ()>,
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:22:22
+ |
+LL | also_not_ok: Vec<HashMap<usize, ()>>,
+ | ^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:30:30
+ |
+LL | fn weird_map(&self, map: HashMap<usize, ()>);
+ | ^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:38:25
+ |
+LL | fn not_ok(&self) -> HashMap<String, ()> {
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:55:14
+ |
+LL | fn test(map: HashMap<String, ()>, key: &str) -> HashMap<String, ()> {
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:55:49
+ |
+LL | fn test(map: HashMap<String, ()>, key: &str) -> HashMap<String, ()> {
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:64:34
+ |
+LL | let _: HashMap<String, ()> = HashMap::new();
+ | ^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:64:12
+ |
+LL | let _: HashMap<String, ()> = HashMap::new();
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_hashmap_values.rs:67:12
+ |
+LL | let _: HashMap<_, _> = std::iter::empty::<(String, ())>().collect();
+ | ^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: aborting due to 13 previous errors
+