mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 10:48:36 +00:00
12 lines
209 B
Rust
12 lines
209 B
Rust
|
// run-rustfix
|
||
|
// Tests from for_loop.rs that don't have suggestions
|
||
|
|
||
|
#[warn(clippy::single_element_loop)]
|
||
|
fn main() {
|
||
|
let item1 = 2;
|
||
|
{
|
||
|
let item = &item1;
|
||
|
println!("{}", item);
|
||
|
}
|
||
|
}
|