Skip to content

Commit b3c8041

Browse files
committed
fix regression in behavior tests
1 parent d5e438b commit b3c8041

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/analyze.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6132,6 +6132,9 @@ static Error resolve_async_frame(CodeGen *g, ZigType *frame_type) {
61326132
param_name = buf_sprintf("@arg%" ZIG_PRI_usize, arg_i);
61336133
}
61346134
ZigType *param_type = param_info->type;
6135+
if ((err = type_resolve(g, param_type, ResolveStatusSizeKnown))) {
6136+
return err;
6137+
}
61356138

61366139
fields.append({buf_ptr(param_name), param_type, 0});
61376140
}

0 commit comments

Comments
 (0)