mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-16 05:58:41 +00:00
10 lines
110 B
Rust
10 lines
110 B
Rust
// run-rustfix
|
|
|
|
fn main() {
|
|
println!();
|
|
println!();
|
|
|
|
match "a" {
|
|
_ => println!(),
|
|
}
|
|
}
|