rust/tests/data/parser/inline/0086_no_semi_after_block.rs
2018-08-07 16:32:09 +03:00

10 lines
107 B
Rust

fn foo() {
if true {}
loop {}
match () {}
while true {}
for _ in () {}
{}
{}
}