blob: 3641b0e71c169aa2a2de170cfc2d7d704bc2233a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
comptime {
var a: i64 = undefined;
_ = a % a;
_ = &a;
}
// error
// backend=stage2
// target=native
//
// :3:9: error: use of undefined value here causes undefined behavior
|