mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-04 23:05:00 -04:00
11 lines
177 B
Zig
11 lines
177 B
Zig
comptime {
|
|
const a: i64 = undefined;
|
|
_ = a * a;
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :3:13: error: use of undefined value here causes undefined behavior
|