aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0031_while_expr.rs
blob: 2f818816025ece367ae642057ddc9840053a055c (plain)
1
2
3
4
5
fn foo() {
    while true {};
    while let Some(x) = it.next() {};
    while { true } {};
}