summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslangbroken/scss/378-test_nested_mixin_shadow.scss
blob: 9b5870089abd9c4b99546a936ac0cfc199493ada (plain)
1
2
3
4
5
6
7
8
@mixin bar {a: b}

foo {
  @mixin bar {c: d}
  @include bar;
}

baz {@include bar}