aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0065_if_expr.rs
blob: 4b0d9af89521c6df7ffc6521ddc1c63aaf534293 (plain)
1
2
3
4
5
6
fn foo() {
    if true {};
    if true {} else {};
    if true {} else if false {} else {};
    if S {};
}