aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslangbroken/scss/337-test_function_splat_args.scss
blob: 6dfed0ae2d2d9fa64d7856014df0ef7ed5bb93b0 (plain)
1
2
3
4
5
6
@function foo($a, $b, $c, $d) {
  @return "a: #{$a}, b: #{$b}, c: #{$c}, d: #{$d}";
}

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