We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3091f31 commit 45fe87cCopy full SHA for 45fe87c
vlib/v/checker/fn.v
@@ -875,7 +875,7 @@ pub fn (mut c Checker) fn_call(mut node ast.CallExpr, mut continue_check &bool)
875
mut final_param_sym := param_typ_sym
876
mut final_param_typ := param.typ
877
if func.is_variadic && param_typ_sym.info is ast.Array {
878
- final_param_typ = param_typ_sym.array_info().elem_type
+ final_param_typ = param_typ_sym.info.elem_type
879
final_param_sym = c.table.sym(final_param_typ)
880
}
881
// Note: Casting to voidptr is used as an escape mechanism, so:
0 commit comments