The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
@mixin B($width: 0, $height: 0) {
  width: $width;
  height: $height;
}

@mixin A($args...) {
  @include B($args...);
}

.test {
  @include A($height: 3px);
}