mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-25 11:25:06 +00:00
8 lines
95 B
Rust
8 lines
95 B
Rust
|
fn main() {
|
||
|
match () {
|
||
|
92 => (),
|
||
|
'c' => (),
|
||
|
"hello" => (),
|
||
|
}
|
||
|
}
|