rust/crates/libsyntax2/tests/data/parser/inline/0092_literal_pattern.rs

8 lines
95 B
Rust
Raw Normal View History

2018-08-08 00:59:16 +03:00
fn main() {
match () {
92 => (),
'c' => (),
"hello" => (),
}
}