-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segfault with @extends and :not #2017
Comments
I got |
The segfault was easy to fix as most of the time (another missing check). libsass 3.5.5+ foo {
bar: baz; }
foo a:not(.btn, foo) {
color: red; }
foo a:not(.btn, foo) {
color: red; } libsass 3.3.2 (sassmeister) foo {
bar: baz; }
foo a:not(.btn) {
color: red; }
foo a:not(.btn) {
color: red; } expected foo {
bar: baz; }
foo a:not(.btn):not(foo) {
color: red; }
foo a:not(.btn):not(foo) {
color: red; } So it was silently dropping the |
Continued in #2031 |
Originally reported by @dryoma in sass/node-sass#1465
Ruby Sass
LibSass 3.3.3+
LibSass 3.3.2
The text was updated successfully, but these errors were encountered: