DEBSOURCES
Skip Quicknav
sources / node-node-sass / 4.14.1%2Bgit20200512.e1fc158%2Bdfsg-4 / sass-spec / spec / scss-tests / 067_test_mixin_splat_args / input.scss
123456789
@mixin foo($a, $b, $c, $d) { a: $a; b: $b; c: $c; d: $d; } $list: 2, 3, 4; .foo {@include foo(1, $list...)}