mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
8 lines
121 B
Zig
8 lines
121 B
Zig
comptime {
|
|
const a: i32 = 1;
|
|
const b: i32 = 0;
|
|
const c = a / b;
|
|
_ = c;
|
|
}
|
|
|
|
// test_error=division by zero
|