mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
11 lines
157 B
Zig
11 lines
157 B
Zig
comptime {
|
|
const x = @divExact(10.0, 3.0);
|
|
_ = x;
|
|
}
|
|
|
|
// error
|
|
// backend=llvm
|
|
// target=native
|
|
//
|
|
// :2:15: error: exact division produced remainder
|