mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
23 lines
442 B
Rust
23 lines
442 B
Rust
|
// run-rustfix
|
||
|
|
||
|
#![warn(clippy::unnecessary_owned_empty_strings)]
|
||
|
|
||
|
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
|
||
|
ref_str_argument(&String::from(""));
|
||
|
|
||
|
// should not be linted
|
||
|
ref_str_argument("");
|
||
|
|
||
|
// should not be linted
|
||
|
ref_string_argument(&String::new());
|
||
|
}
|