aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/sub_assign_on_undefined_value.zig
blob: 0a241106ac131b070b97b634b7b6ac910446f649 (plain)
1
2
3
4
5
6
7
8
9
10
comptime {
    var a: i64 = undefined;
    a -= a;
}

// error
// backend=stage2
// target=native
//
// :3:10: error: use of undefined value here causes undefined behavior