The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
@mixin foo() {
  /* begin foo */
  /* assigning to $x */
  $x: inside foo;
  x: $x;
  /* end foo */
}

outer {
  /* assigning to $x */
  $x: inside outer scope;
  blah: blah;
  inner {
    @include foo();
    x: $x;
  }
}