mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-08-28 04:10:09 -04:00
12 lines
154 B
Rust
12 lines
154 B
Rust
// run-rustfix
|
|
#![allow(clippy::match_single_binding)]
|
|
|
|
fn main() {
|
|
println!();
|
|
println!("");
|
|
|
|
match "a" {
|
|
_ => println!(""),
|
|
}
|
|
}
|