aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/shr_on_undefined_value.zig
blob: cae5f3e6a804c1b6db11b311d8e7c5aed7a4717e (plain)
1
2
3
4
5
6
7
8
9
10
11
comptime {
    var a: i64 = undefined;
    var b: u6 = undefined;
    _ = &a;
    _ = &b;
    _ = a >> b;
}

// error
//
// :6:9: error: use of undefined value here causes illegal behavior