Skip to content

Commit eb1d9a1

Browse files
committed
Add test for :not(&-c)
Refs sass/libsass#2630
1 parent d5b388e commit eb1d9a1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

spec/nesting/not.hrx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<===> multiple_parent_selectors_with_trailing_ident/input.scss
2+
// Regression test for sass/libsass#2630
3+
.a, .b {
4+
:not(&-c) {d: e}
5+
}
6+
7+
<===> multiple_parent_selectors_with_trailing_ident/output.css
8+
:not(.a-c, .b-c) {
9+
d: e;
10+
}

0 commit comments

Comments
 (0)