mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 02:08:28 +00:00
11 lines
160 B
Rust
11 lines
160 B
Rust
|
#![allow(dead_code, unused_variables)]
|
||
|
|
||
|
fn main() {}
|
||
|
|
||
|
mod should_lint {
|
||
|
fn two_helps() {
|
||
|
let s = &String::new();
|
||
|
let x: &str = &*s;
|
||
|
}
|
||
|
}
|