2022-04-07 18:21:47 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
2022-04-11 11:05:42 +00:00
|
|
|
#![warn(clippy::unnecessary_owned_empty_strings)]
|
2022-04-07 18:21:47 +00:00
|
|
|
|
|
|
|
fn ref_str_argument(_value: &str) {}
|
|
|
|
|
|
|
|
#[allow(clippy::ptr_arg)]
|
|
|
|
fn ref_string_argument(_value: &String) {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// should be linted
|
|
|
|
ref_str_argument(&String::new());
|
|
|
|
|
|
|
|
// should be linted
|
2022-08-23 14:17:30 +00:00
|
|
|
#[allow(clippy::manual_string_new)]
|
2022-04-07 18:21:47 +00:00
|
|
|
ref_str_argument(&String::from(""));
|
|
|
|
|
|
|
|
// should not be linted
|
|
|
|
ref_str_argument("");
|
|
|
|
|
|
|
|
// should not be linted
|
|
|
|
ref_string_argument(&String::new());
|
|
|
|
}
|