rust-clippy/tests/ui/strings.rs

68 lines
1.2 KiB
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![feature(tool_lints)]
2017-09-18 10:47:33 +00:00
2018-07-28 15:34:52 +00:00
#[warn(clippy::string_add)]
#[allow(clippy::string_add_assign)]
fn add_only() { // ignores assignment distinction
let mut x = "".to_owned();
for _ in 1..3 {
2017-02-08 13:58:07 +00:00
x = x + ".";
}
let y = "".to_owned();
2017-02-08 13:58:07 +00:00
let z = y + "...";
assert_eq!(&x, &z);
}
2018-07-28 15:34:52 +00:00
#[warn(clippy::string_add_assign)]
fn add_assign_only() {
let mut x = "".to_owned();
for _ in 1..3 {
2017-02-08 13:58:07 +00:00
x = x + ".";
}
let y = "".to_owned();
let z = y + "...";
assert_eq!(&x, &z);
}
2018-07-28 15:34:52 +00:00
#[warn(clippy::string_add, clippy::string_add_assign)]
fn both() {
let mut x = "".to_owned();
for _ in 1..3 {
2017-02-08 13:58:07 +00:00
x = x + ".";
}
let y = "".to_owned();
2017-02-08 13:58:07 +00:00
let z = y + "...";
assert_eq!(&x, &z);
}
#[allow(dead_code, unused_variables)]
2018-07-28 15:34:52 +00:00
#[warn(clippy::string_lit_as_bytes)]
fn str_lit_as_bytes() {
let bs = "hello there".as_bytes();
2017-02-08 13:58:07 +00:00
// no warning, because this cannot be written as a byte string literal:
let ubs = "".as_bytes();
let strify = stringify!(foobar).as_bytes();
}
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);
}