mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
67aad6c180
This moves the `string_lit_as_bytes` tests into a new file and enables rustfix tests for them.
55 lines
918 B
Rust
55 lines
918 B
Rust
#[warn(clippy::string_add)]
|
|
#[allow(clippy::string_add_assign)]
|
|
fn add_only() {
|
|
// ignores assignment distinction
|
|
let mut x = "".to_owned();
|
|
|
|
for _ in 1..3 {
|
|
x = x + ".";
|
|
}
|
|
|
|
let y = "".to_owned();
|
|
let z = y + "...";
|
|
|
|
assert_eq!(&x, &z);
|
|
}
|
|
|
|
#[warn(clippy::string_add_assign)]
|
|
fn add_assign_only() {
|
|
let mut x = "".to_owned();
|
|
|
|
for _ in 1..3 {
|
|
x = x + ".";
|
|
}
|
|
|
|
let y = "".to_owned();
|
|
let z = y + "...";
|
|
|
|
assert_eq!(&x, &z);
|
|
}
|
|
|
|
#[warn(clippy::string_add, clippy::string_add_assign)]
|
|
fn both() {
|
|
let mut x = "".to_owned();
|
|
|
|
for _ in 1..3 {
|
|
x = x + ".";
|
|
}
|
|
|
|
let y = "".to_owned();
|
|
let z = y + "...";
|
|
|
|
assert_eq!(&x, &z);
|
|
}
|
|
|
|
#[allow(clippy::assign_op_pattern)]
|
|
fn main() {
|
|
add_only();
|
|
add_assign_only();
|
|
both();
|
|
|
|
// the add is only caught for `String`
|
|
let mut x = 1;
|
|
x = x + 1;
|
|
assert_eq!(2, x);
|
|
}
|