commit 997eaf6d8724fe2076195de4d6d54bf2bf880eea (tree)
parent f258a391daa31b3ba2c37d879db96fadc0c058f3
Author: mlugg <mlugg@mlugg.co.uk>
Date: Wed, 8 Nov 2023 19:32:32 +0000
Sema: do not force resolution of struct field inits when calling function pointer field
b3462b7 caused a regression in a third-party project, since it forced
resolution of field initializers for any field call 'foo.bar()', despite
this only being necessary when 'bar' is a comptime field.
See https://github.com/ziglang/zig/pull/17692#issuecomment-1802096734.
Diffstat:
2 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/src/Sema.zig b/src/Sema.zig
@@ -26652,8 +26652,9 @@ fn finishFieldCallBind(
const container_ty = ptr_ty.childType(mod);
if (container_ty.zigTypeTag(mod) == .Struct) {
- try sema.resolveStructFieldInits(container_ty);
- if (try container_ty.structFieldValueComptime(mod, field_index)) |default_val| {
+ if (container_ty.structFieldIsComptime(field_index, mod)) {
+ try sema.resolveStructFieldInits(container_ty);
+ const default_val = (try container_ty.structFieldValueComptime(mod, field_index)).?;
return .{ .direct = Air.internedToRef(default_val.toIntern()) };
}
}
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
@@ -1842,3 +1842,18 @@ test "circular dependency through pointer field of a struct" {
try expect(outer.middle.outer == null);
try expect(outer.middle.inner == null);
}
+
+test "field calls do not force struct field init resolution" {
+ const S = struct {
+ x: u32 = blk: {
+ _ = @TypeOf(make().dummyFn()); // runtime field call - S not fully resolved - dummyFn call should not force field init resolution
+ break :blk 123;
+ },
+ dummyFn: *const fn () void = undefined,
+ fn make() @This() {
+ return .{};
+ }
+ };
+ var s: S = .{};
+ try expect(s.x == 123);
+}