mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
11 lines
175 B
Zig
11 lines
175 B
Zig
|
comptime {
|
||
|
var a: i64 = undefined;
|
||
|
_ = a * a;
|
||
|
}
|
||
|
|
||
|
// error
|
||
|
// backend=stage2
|
||
|
// target=native
|
||
|
//
|
||
|
// :3:13: error: use of undefined value here causes undefined behavior
|