aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/mod_assign_on_undefined_value.zig
blob: 51a78a21e2f7fb7dede5015fc89c748342364c6d (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