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