Skip to content

Commit

Permalink
Add test for :not(&-c)
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed May 13, 2019
1 parent d5b388e commit eb1d9a1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions spec/nesting/not.hrx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<===> multiple_parent_selectors_with_trailing_ident/input.scss
// Regression test for sass/libsass#2630
.a, .b {
:not(&-c) {d: e}
}

<===> multiple_parent_selectors_with_trailing_ident/output.css
:not(.a-c, .b-c) {
d: e;
}

0 comments on commit eb1d9a1

Please sign in to comment.