]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/match-arrows-block-then-binop.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / parser / match-arrows-block-then-binop.rs
CommitLineData
223e47cc 1fn main() {
48663c56 2 let _ = match 0 {
223e47cc 3 0 => {
48663c56 4 0
a7813a04 5 } + 5 //~ ERROR expected pattern, found `+`
48663c56 6 };
223e47cc 7}