rust/tests/ui/parser/issues/issue-98601-delimiter-error-1.rs

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

10 lines
122 B
Rust
Raw Normal View History

2023-09-21 09:56:17 -05:00
fn foo() {
match 0 {
_ => {}
}
if foo
}
} //~ ERROR unexpected closing delimiter: `}`
fn main() {}