summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_owned_empty_strings.rs
blob: 0cbdc151ed9b1b0b3a2056ed6e4e78665f175ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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());
}