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

8 lines
95 B
Rust
Raw Normal View History

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