mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
14 lines
132 B
Rust
14 lines
132 B
Rust
|
|
|
|
#![allow(clippy)]
|
|
|
|
fn main() {
|
|
match 1 {
|
|
1 => {}
|
|
2 => {
|
|
[0; 1];
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|