aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/checker/tests/function_variadic_arg_array_decompose.out
blob: f72b6e0fe4f29a49749a7aec96fe91c91e8daea5 (plain)
1
2
3
4
5
6
vlib/v/checker/tests/function_variadic_arg_array_decompose.vv:11:10: error: too many arguments in call to `sum`
    9 | fn main() {
   10 |     b := [5, 6, 7]
   11 |     println(sum(1, 2, ...b))
      |             ~~~~~~~~~~~~~~~
   12 | }