zig/test/behavior/field_parent_ptr.zig
Andrew Kelley 4307436b99 move behavior tests from test/stage1/ to test/
And fix test cases to make them pass. This is in preparation for
starting to pass behavior tests with self-hosted.
2021-04-29 15:54:04 -07:00

42 lines
791 B
Zig

const expect = @import("std").testing.expect;
test "@fieldParentPtr non-first field" {
testParentFieldPtr(&foo.c);
comptime testParentFieldPtr(&foo.c);
}
test "@fieldParentPtr first field" {
testParentFieldPtrFirst(&foo.a);
comptime testParentFieldPtrFirst(&foo.a);
}
const Foo = struct {
a: bool,
b: f32,
c: i32,
d: i32,
};
const foo = Foo{
.a = true,
.b = 0.123,
.c = 1234,
.d = -10,
};
fn testParentFieldPtr(c: *const i32) void {
expect(c == &foo.c);
const base = @fieldParentPtr(Foo, "c", c);
expect(base == &foo);
expect(&base.c == c);
}
fn testParentFieldPtrFirst(a: *const bool) void {
expect(a == &foo.a);
const base = @fieldParentPtr(Foo, "a", a);
expect(base == &foo);
expect(&base.a == a);
}