aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0096_no_semi_after_block.rs
blob: 4919665cb57817f1f844f33c3bbb6c64aa44bc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fn foo() {
    if true {}
    loop {}
    match () {}
    while true {}
    for _ in () {}
    {}
    {}
    macro_rules! test {
         () => {}
    }
    test!{}
}