diff --git a/vlib/v/parser/fn.v b/vlib/v/parser/fn.v index 3783315468..be8d058caa 100644 --- a/vlib/v/parser/fn.v +++ b/vlib/v/parser/fn.v @@ -45,7 +45,7 @@ pub fn (p mut Parser) call_args() ([]ast.Expr,[]bool) { else { muts << false } - e,_ := p.expr(0) + e := p.expr(0) args << e if p.tok.kind != .rpar { p.check(.comma)