mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
8fd0fddce5
* In-progress os.ChildProcess.spawn implementation. See #204 * Add explicit cast from integer to error. Closes #294 * fix casting from error to integer * fix compiler crash when initializing variable to undefined with no type
44 lines
986 B
Zig
44 lines
986 B
Zig
const assert = @import("std").debug.assert;
|
|
|
|
test "intToPtrCast" {
|
|
const x = isize(13);
|
|
const y = (&u8)(x);
|
|
const z = usize(y);
|
|
assert(z == 13);
|
|
}
|
|
|
|
test "numLitIntToPtrCast" {
|
|
const vga_mem = (&u16)(0xB8000);
|
|
assert(usize(vga_mem) == 0xB8000);
|
|
}
|
|
|
|
test "pointerReinterpretConstFloatToInt" {
|
|
const float: f64 = 5.99999999999994648725e-01;
|
|
const float_ptr = &float;
|
|
const int_ptr = @ptrcast(&i32, float_ptr);
|
|
const int_val = *int_ptr;
|
|
assert(int_val == 858993411);
|
|
}
|
|
|
|
test "implicitly cast a pointer to a const pointer of it" {
|
|
var x: i32 = 1;
|
|
const xp = &x;
|
|
funcWithConstPtrPtr(xp);
|
|
assert(x == 2);
|
|
}
|
|
|
|
fn funcWithConstPtrPtr(x: &const &i32) {
|
|
**x += 1;
|
|
}
|
|
|
|
error ItBroke;
|
|
test "explicit cast from integer to error type" {
|
|
testCastIntToErr(error.ItBroke);
|
|
comptime testCastIntToErr(error.ItBroke);
|
|
}
|
|
fn testCastIntToErr(err: error) {
|
|
const x = usize(err);
|
|
const y = error(x);
|
|
assert(error.ItBroke == y);
|
|
}
|