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

8 lines
95 B
Rust
Raw Normal View History

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