Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
function_variadic_arg_array_decompose.out
6
lines
·
6
sloc
·
242 bytes
·
7a6fd359d08474adeb36925bdcee31daac7d9e28
Raw
1
vlib/v/checker/tests/function_variadic_arg_array_decompose.vv:11:10: error: too many arguments in call to `sum`
2
9 | fn main() {
3
10 | b := [5, 6, 7]
4
11 | println(sum(1, 2, ...b))
5
| ~~~~~~~~~~~~~~~
6
12 | }
7