]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/match-arrows-block-then-binop.rs
Auto merge of #57925 - fintelia:riscv-cas, r=nagisa
[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 }