]> git.lizzy.rs Git - rust.git/blob - crates/ra_syntax/tests/data/parser/inline/ok/0055_literal_pattern.rs
16f674d9db1eaa23265a7955ac47270d28817c0f
[rust.git] / crates / ra_syntax / tests / data / parser / inline / ok / 0055_literal_pattern.rs
1 fn main() {
2     match () {
3         92 => (),
4         'c' => (),
5         "hello" => (),
6     }
7 }