aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/div_on_undefined_value.zig
blob: bc2cfa158d1137a03429a5a36ed296d3d5fef315 (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:13: error: use of undefined value here causes undefined behavior