rust/tests/ui/parser/match-arrows-block-then-binop.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
116 B
Rust
Raw Normal View History

fn main() {
let _ = match 0 {
0 => {
0
} + 5 //~ ERROR expected pattern, found `+`
};
}