mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-22 08:31:47 -04:00
11 lines
165 B
Zig
11 lines
165 B
Zig
comptime {
|
|
const a: i32 = 1;
|
|
const b: i32 = 0;
|
|
const c = a / b;
|
|
_ = c;
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :4:19: error: division by zero here causes illegal behavior
|