aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/test_comptime_invalid_cast.zig
blob: 6f35ce37f120ee3632ab98be2aea6d4c130dafc2 (plain)
1
2
3
4
5
6
7
comptime {
    const value: i32 = -1;
    const unsigned: u32 = @intCast(value);
    _ = unsigned;
}

// test_error=type 'u32' cannot represent integer value '-1'