Which selector does this SCSS emit?

from Sass
Dart Sass 1.104.0 beginner 2 min

Which selector does this SCSS emit?

scss
$state: "open";

.notice {
  &--#{$state} {
    display: block;
  }
}
Open in playground
Report an error