summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/string_add_assign.fixed
blob: db71bab1e5214a96baceeb1a62ee426e3d6173a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// run-rustfix

#[allow(clippy::string_add, unused)]
#[warn(clippy::string_add_assign)]
fn main() {
    // ignores assignment distinction
    let mut x = "".to_owned();

    for _ in 1..3 {
        x += ".";
    }

    let y = "".to_owned();
    let z = y + "...";

    assert_eq!(&x, &z);

    let mut x = 1;
    x += 1;
    assert_eq!(2, x);
}