aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/orelse_on_undefined_value.zig
blob: d0870ac42b91e3549f01ef76ce0254a89f53c77f (plain)
1
2
3
4
5
6
7
8
comptime {
    const a: ?bool = undefined;
    _ = a orelse false;
}

// error
//
// :3:11: error: use of undefined value here causes illegal behavior