summaryrefslogtreecommitdiff
path: root/exercises/22_clippy/clippy2.rs
blob: 8cfe6f80a2523247dbeafb1102c944bbc8265d40 (plain)
1
2
3
4
5
6
7
8
9
10
fn main() {
    let mut res = 42;
    let option = Some(12);
    // TODO: Fix the Clippy lint.
    for x in option {
        res += x;
    }

    println!("{res}");
}