aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/div_assign_on_undefined_value.zig
blob: 20a9d7f6c77d04bf82d85388c462fd82f108fe33 (plain)
1
2
3
4
5
6
7
8
comptime {
    var a: i64 = undefined;
    a /= a;
}

// error
//
// :3:5: error: use of undefined value here causes illegal behavior