mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
11 lines
110 B
Rust
11 lines
110 B
Rust
|
// run-rustfix
|
||
|
|
||
|
fn main() {
|
||
|
println!();
|
||
|
println!();
|
||
|
|
||
|
match "a" {
|
||
|
_ => println!(),
|
||
|
}
|
||
|
}
|