summaryrefslogtreecommitdiff
path: root/scss/tests/files/bugs/append.scss
blob: 2b6aff90f0d6d8b3ac293a306d9b2c888c0ef711 (plain)
1
2
3
4
5
6
7
8
9
10
// Default when the first list has < 2 elements is space
$a: append((), 1);
$b: append(append((), 1, comma), 2);
$c: append((1, 2), 3);

p {
  a: $a;
  b: $b;
  c: $c;
}