rust-clippy/tests/ui/borrow_deref_ref_unfixable.rs

11 lines
160 B
Rust
Raw Normal View History

#![allow(dead_code, unused_variables)]
fn main() {}
mod should_lint {
fn two_helps() {
let s = &String::new();
let x: &str = &*s;
}
}