forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix FN for collections/smart ptrs in
std
- Loading branch information
Showing
3 changed files
with
161 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,106 @@ | ||
error: mutable key type | ||
--> $DIR/mut_key.rs:28:32 | ||
--> $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:28:72 | ||
--> $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:29:5 | ||
--> $DIR/mut_key.rs:31:5 | ||
| | ||
LL | let _other: HashMap<Key, bool> = HashMap::new(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: mutable key type | ||
--> $DIR/mut_key.rs:56:22 | ||
--> $DIR/mut_key.rs:58:22 | ||
| | ||
LL | fn tuples_bad<U>(_m: &mut HashMap<(Key, U), bool>) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 4 previous errors | ||
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 | ||
|