rust/tests/ui/borrow_deref_ref_unfixable.rs
2023-08-11 14:02:28 +00:00

12 lines
199 B
Rust

//@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;
}
}