summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/mut_key.stderr
blob: 8d6a259c7e385f307ada794ea2e9ca0f06f01853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: mutable key type
  --> $DIR/mut_key.rs:27:32
   |
LL | fn should_not_take_this_arg(m: &mut HashMap<Key, usize>, _n: usize) -> HashSet<Key> {
   |                                ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `#[deny(clippy::mutable_key_type)]` on by default

error: mutable key type
  --> $DIR/mut_key.rs:27:72
   |
LL | fn should_not_take_this_arg(m: &mut HashMap<Key, usize>, _n: usize) -> HashSet<Key> {
   |                                                                        ^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:28:5
   |
LL |     let _other: HashMap<Key, bool> = HashMap::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:47:22
   |
LL | fn tuples_bad<U>(_m: &mut HashMap<(Key, U), bool>) {}
   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 4 previous errors