aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/negate_on_undefined_value.zig
blob: 24888126790d38f75cbf9e87133e81b84a221abe (plain)
1
2
3
4
5
6
7
8
comptime {
    const a: i64 = undefined;
    _ = -a;
}

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