summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-98601-delimiter-error-1.rs
blob: cfbbd014d4f10a1199c87bc6dde0ff291cfe23f9 (plain)
1
2
3
4
5
6
7
8
9
fn foo() {
    match 0 {
      _ => {}
    }
    if foo
    }
} //~ ERROR unexpected closing delimiter: `}`

fn main() {}