summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/borrow_deref_ref_unfixable.rs
blob: be9887339597833baff0638b1bba98081975d095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@no-rustfix: overlapping suggestions
#![allow(dead_code, unused_variables)]

fn main() {}

mod should_lint {
    fn two_helps() {
        let s = &String::new();
        let x: &str = &*s;
        //~^ ERROR: deref on an immutable reference
        //~| NOTE: `-D clippy::borrow-deref-ref` implied by `-D warnings`
    }
}