11 lines
198 B
Zig
11 lines
198 B
Zig
comptime {
|
|
const a: anyerror!bool = undefined;
|
|
if (a catch false) {}
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :3:11: error: use of undefined value here causes undefined behavior
|