mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 02:08:28 +00:00
20 lines
401 B
Text
20 lines
401 B
Text
|
error: for loop over a single element
|
||
|
--> $DIR/single_element_loop.rs:7:5
|
||
|
|
|
||
|
LL | / for item in &[item1] {
|
||
|
LL | | println!("{}", item);
|
||
|
LL | | }
|
||
|
| |_____^
|
||
|
|
|
||
|
= note: `-D clippy::single-element-loop` implied by `-D warnings`
|
||
|
help: try
|
||
|
|
|
||
|
LL | {
|
||
|
LL | let item = &item1;
|
||
|
LL | println!("{}", item);
|
||
|
LL | }
|
||
|
|
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|