]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/match-arrows-block-then-binop.rs
Auto merge of #55780 - ogoffart:span_source_text, r=petrochenkov
[rust.git] / src / test / ui / parser / match-arrows-block-then-binop.rs
1 fn main() {
2
3     match 0 {
4       0 => {
5       } + 5 //~ ERROR expected pattern, found `+`
6     }
7 }