summaryrefslogtreecommitdiffstats
path: root/tools/lint/test/files/rustfmt/subdir/bad.rs
blob: fb1746fafd7ba686191bf662fe8753a66b9d8dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
    // Statements here are executed when the compiled binary is called

    // Print text to the console
    println!("Hello World!");
    // Clippy detects this as a swap and considers this as an error
    let mut a =
        1;
    let mut b=1;

    a =
        b;
    b = a;


}