@function foo($a, $b, $c, $d) {
  @return "a: #{$a}, b: #{$b}, c: #{$c}, d: #{$d}";
}

$list: 2, 3, 4;
.foo {val: foo(1, $list...)}
