aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/empty_if_body.zig
blob: 1627fc743c228c073333cdfae1fac7e265b032a8 (plain)
1
2
3
4
5
6
7
export fn a() void {
    if(true);
}

// error
//
// :2:13: error: expected block or assignment, found ';'