summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/conf_deprecated_key/conf_deprecated_key.rs
blob: b4e677ea124b7d673b14c90e1ea08607ae311dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
fn main() {}

#[warn(clippy::cognitive_complexity)]
fn cognitive_complexity() {
    let x = vec![1, 2, 3];
    for i in x {
        if i == 1 {
            println!("{}", i);
        }
    }
}