rust/tests/data/parser/inline/0092_literal_pattern.rs
2018-08-08 00:59:16 +03:00

8 lines
95 B
Rust

fn main() {
match () {
92 => (),
'c' => (),
"hello" => (),
}
}