aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0086_no_semi_after_block.rs
blob: d769da43dd4e6c67e65040b771d89232c28aeb6e (plain)
1
2
3
4
5
6
7
8
9
fn foo() {
    if true {}
    loop {}
    match () {}
    while true {}
    for _ in () {}
    {}
    {}
}