mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
10 lines
160 B
Rust
10 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;
|
|
}
|
|
}
|