summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/zero_sized_btreemap_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_btreemap_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_btreemap_values.stderr')
-rw-r--r--src/tools/clippy/tests/ui/zero_sized_btreemap_values.stderr107
1 files changed, 107 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/zero_sized_btreemap_values.stderr b/src/tools/clippy/tests/ui/zero_sized_btreemap_values.stderr
new file mode 100644
index 000000000..d924f3379
--- /dev/null
+++ b/src/tools/clippy/tests/ui/zero_sized_btreemap_values.stderr
@@ -0,0 +1,107 @@
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:5:28
+ |
+LL | const CONST_NOT_OK: Option<BTreeMap<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_btreemap_values.rs:8:30
+ |
+LL | static STATIC_NOT_OK: Option<BTreeMap<String, ()>> = None;
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:11:17
+ |
+LL | type NotOkMap = BTreeMap<String, ()>;
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:15:11
+ |
+LL | NotOk(BTreeMap<String, ()>),
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:20:13
+ |
+LL | not_ok: BTreeMap<String, ()>,
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:22:22
+ |
+LL | also_not_ok: Vec<BTreeMap<usize, ()>>,
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:30:30
+ |
+LL | fn weird_map(&self, map: BTreeMap<usize, ()>);
+ | ^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:38:25
+ |
+LL | fn not_ok(&self) -> BTreeMap<String, ()> {
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:55:14
+ |
+LL | fn test(map: BTreeMap<String, ()>, key: &str) -> BTreeMap<String, ()> {
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:55:50
+ |
+LL | fn test(map: BTreeMap<String, ()>, key: &str) -> BTreeMap<String, ()> {
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:64:35
+ |
+LL | let _: BTreeMap<String, ()> = BTreeMap::new();
+ | ^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:64:12
+ |
+LL | let _: BTreeMap<String, ()> = BTreeMap::new();
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: map with zero-sized value type
+ --> $DIR/zero_sized_btreemap_values.rs:67:12
+ |
+LL | let _: BTreeMap<_, _> = std::iter::empty::<(String, ())>().collect();
+ | ^^^^^^^^^^^^^^
+ |
+ = help: consider using a set instead
+
+error: aborting due to 13 previous errors
+