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