fn opt() ?[]const u8 { return ""; } test "optional bug" { const S = struct { s: []const u8, }; const s = S{ .s = opt() }; }