mirror of
https://github.com/ziglang/zig.git
synced 2025-12-27 08:33:15 +00:00
11 lines
151 B
Zig
11 lines
151 B
Zig
comptime {
|
|
var x: i32 = 1;
|
|
x += 1;
|
|
if (x != 1) unreachable;
|
|
}
|
|
pub fn main() void {}
|
|
|
|
// error
|
|
//
|
|
// :4:17: error: reached unreachable code
|