2017-01-05 00:57:48 -08:00
|
|
|
const assert = @import("std").debug.assert;
|
2017-04-06 15:07:38 -07:00
|
|
|
const mem = @import("std").mem;
|
2016-12-21 22:42:30 -08:00
|
|
|
|
2017-03-16 13:02:35 -07:00
|
|
|
test "intToPtrCast" {
|
2017-01-05 00:57:48 -08:00
|
|
|
const x = isize(13);
|
|
|
|
const y = (&u8)(x);
|
|
|
|
const z = usize(y);
|
|
|
|
assert(z == 13);
|
2016-12-21 22:42:30 -08:00
|
|
|
}
|
2017-01-31 10:38:04 -08:00
|
|
|
|
2017-03-16 13:02:35 -07:00
|
|
|
test "numLitIntToPtrCast" {
|
2017-01-31 10:38:04 -08:00
|
|
|
const vga_mem = (&u16)(0xB8000);
|
|
|
|
assert(usize(vga_mem) == 0xB8000);
|
|
|
|
}
|
2017-03-14 18:38:27 -07:00
|
|
|
|
2017-03-16 13:02:35 -07:00
|
|
|
test "pointerReinterpretConstFloatToInt" {
|
2017-03-14 18:38:27 -07:00
|
|
|
const float: f64 = 5.99999999999994648725e-01;
|
|
|
|
const float_ptr = &float;
|
2017-03-31 03:18:20 -07:00
|
|
|
const int_ptr = @ptrcast(&i32, float_ptr);
|
2017-03-14 18:38:27 -07:00
|
|
|
const int_val = *int_ptr;
|
|
|
|
assert(int_val == 858993411);
|
|
|
|
}
|
2017-03-31 02:48:15 -07:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2017-04-02 15:19:59 -07:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2017-04-06 15:07:38 -07:00
|
|
|
|
|
|
|
test "peer resolve arrays of different size to const slice" {
|
|
|
|
assert(mem.eql(u8, boolToStr(true), "true"));
|
|
|
|
assert(mem.eql(u8, boolToStr(false), "false"));
|
|
|
|
comptime assert(mem.eql(u8, boolToStr(true), "true"));
|
|
|
|
comptime assert(mem.eql(u8, boolToStr(false), "false"));
|
|
|
|
}
|
|
|
|
fn boolToStr(b: bool) -> []const u8 {
|
|
|
|
if (b) "true" else "false"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
test "peer resolve array and const slice" {
|
|
|
|
testPeerResolveArrayConstSlice(true);
|
|
|
|
comptime testPeerResolveArrayConstSlice(true);
|
|
|
|
}
|
|
|
|
fn testPeerResolveArrayConstSlice(b: bool) {
|
|
|
|
const value1 = if (b) "aoeu" else ([]const u8)("zz");
|
|
|
|
const value2 = if (b) ([]const u8)("zz") else "aoeu";
|
|
|
|
assert(mem.eql(u8, value1, "aoeu"));
|
|
|
|
assert(mem.eql(u8, value2, "zz"));
|
|
|
|
}
|