<===> input.scss
@mixin test() {
  @at-root {
    .inner {
      @content;
    }
  }
}

@include test {
  .test {
    property: value;
   }
 }
<===> output.css
.inner .test {
  property: value;
}