mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
22 lines
346 B
Rust
22 lines
346 B
Rust
|
// 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);
|
||
|
}
|