mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
11 lines
154 B
Rust
11 lines
154 B
Rust
// run-rustfix
|
|
#![allow(clippy::match_single_binding)]
|
|
|
|
fn main() {
|
|
println!();
|
|
println!("");
|
|
|
|
match "a" {
|
|
_ => println!(""),
|
|
}
|
|
}
|