Files
zig/test/cases/compile_errors/catch_on_undefined_value.zig

9 lines
161 B
Zig

comptime {
const a: anyerror!bool = undefined;
if (a catch false) {}
}
// error
//
// :3:11: error: use of undefined value here causes illegal behavior