mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-11 06:24:24 +00:00
8 lines
121 B
Rust
8 lines
121 B
Rust
// run-rustfix
|
|
fn main() {
|
|
match 1 {
|
|
1 => {} //~ ERROR
|
|
_ => { let _: u16 = 2u16; } //~ ERROR
|
|
}
|
|
}
|