Commit 09e4fc4dcf
Changed files (1)
lib
std
zon
lib/std/zon/parse.zig
@@ -786,6 +786,7 @@ const Parser = struct {
elem.* = try self.parseExpr(array_info.child, nodes.at(@intCast(i)));
}
+ if (array_info.sentinel()) |s| result[result.len] = s;
return result;
}