parse.y: unnamed rest argument should be mul (*).

This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-11-19 16:28:30 +09:00
parent 9e064f2353
commit 2e41b20590
+2 -2
View File
@@ -3923,8 +3923,8 @@ f_rest_arg : restarg_mark tIDENTIFIER
}
| restarg_mark
{
local_add_f(p, intern_op(mul));
$$ = -1;
$$ = intern_op(mul);
local_add_f(p, $$);
}
;