summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/single_element_loop.rs
blob: 57e9336a31fcf6c3d775273f7c7a78bedee5c0cf (plain)
1
2
3
4
5
6
7
8
9
10
// run-rustfix
// Tests from for_loop.rs that don't have suggestions

#[warn(clippy::single_element_loop)]
fn main() {
    let item1 = 2;
    for item in &[item1] {
        println!("{}", item);
    }
}