summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/mut_key.stderr
blob: 25dd029b16eeea1e13b5e773613ddf27e106bd4e (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
error: mutable key type
  --> $DIR/mut_key.rs:30:32
   |
LL | fn should_not_take_this_arg(m: &mut HashMap<Key, usize>, _n: usize) -> HashSet<Key> {
   |                                ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::mutable-key-type` implied by `-D warnings`

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

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

error: mutable key type
  --> $DIR/mut_key.rs:70:5
   |
LL |     let _map = HashMap::<Cell<usize>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:71:5
   |
LL |     let _map = HashMap::<&mut Cell<usize>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:72:5
   |
LL |     let _map = HashMap::<&mut usize, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:74:5
   |
LL |     let _map = HashMap::<Vec<Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:75:5
   |
LL |     let _map = HashMap::<BTreeMap<Cell<usize>, ()>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:76:5
   |
LL |     let _map = HashMap::<BTreeMap<(), Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:77:5
   |
LL |     let _map = HashMap::<BTreeSet<Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:78:5
   |
LL |     let _map = HashMap::<Option<Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:79:5
   |
LL |     let _map = HashMap::<Option<Vec<Cell<usize>>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:80:5
   |
LL |     let _map = HashMap::<Result<&mut usize, ()>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:82:5
   |
LL |     let _map = HashMap::<Box<Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:83:5
   |
LL |     let _map = HashMap::<Rc<Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: mutable key type
  --> $DIR/mut_key.rs:84:5
   |
LL |     let _map = HashMap::<Arc<Cell<usize>>, usize>::new();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 17 previous errors