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

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