mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
Update: stderr message format
This commit is contained in:
parent
8a5d78b71a
commit
a85670652a
1 changed files with 7 additions and 7 deletions
|
@ -1,19 +1,19 @@
|
||||||
error: use `.collect()` instead of `::from_iter()`
|
error: use `.collect()` instead of `::from_iter()`
|
||||||
--> $DIR/from_iter_instead_of_collect.rs:10:5
|
--> $DIR/from_iter_instead_of_collect.rs:10:9
|
||||||
|
|
|
|
||||||
LL | Vec::from_iter(iter_expr);
|
LL | Vec::from_iter(iter_expr);
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: `-D clippy::from-iter-instead-of-collect` implied by `-D warnings`
|
= note: `-D clippy::from-iter-instead-of-collect` implied by `-D warnings`
|
||||||
= help: consider using `iter_expr.collect()`
|
= help: consider using `iter_expr.collect()`
|
||||||
|
|
||||||
error: use `.collect()` instead of `::from_iter()`
|
error: use `.collect()` instead of `::from_iter()`
|
||||||
--> $DIR/from_iter_instead_of_collect.rs:11:5
|
--> $DIR/from_iter_instead_of_collect.rs:11:9
|
||||||
|
|
|
|
||||||
LL | HashMap::<usize, &i8>::from_iter(vec![5,5,5,5].iter().enumerate());
|
LL | HashMap::<usize, &i8>::from_iter(vec![5, 5, 5, 5].iter().enumerate());
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= help: consider using `vec![5,5,5,5].iter().enumerate().collect()`
|
= help: consider using `vec![5, 5, 5, 5].iter().enumerate().collect()`
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue