summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslangbroken/scss/341-test_function_splat_expression.scss
blob: 7daa63618ab85dc792047d78602f201725760daa (plain)
1
2
3
4
5
@function foo($a, $b, $c, $d) {
  @return "a: #{$a}, b: #{$b}, c: #{$c}, d: #{$d}";
}

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