aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/catch_on_undefined_value.zig
blob: 6579d6b9210dd4810bc5ea68f8d573092ec1e043 (plain)
1
2
3
4
5
6
7
8
comptime {
    const a: anyerror!bool = undefined;
    if (a catch false) {}
}

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