-
Notifications
You must be signed in to change notification settings - Fork 468
Closed
Milestone
Description
foo:not(.missing) {
a: b;
&:hover { c: d; }
}
bar {
@extend .missing;
}
yields:
foo:not(.missing, bar) {
a: b; }
& {
c: d; }
The segfault has been fixed:
Compiling materializecss fails with a segfault (see error report below). I was hoping that solving #1916 would solve this issue. Unfortunately, this is not the case.
I've been unable to reduce the issue to a small example. Is this something you guys could have a look at?
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00000001247ddfca, pid=47871, tid=15647
#
# JRE version: Java(TM) SE Runtime Environment (8.0_45-b14) (build 1.8.0_45-b14)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.45-b02 mixed mode bsd-amd64 compressed oops)
# Problematic frame:
# C [jna4928102121629723569.tmp+0x6afca] Sass::extendComplexSelector(Sass::Complex_Selector*, Sass::Context&, Sass::Subset_Map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::pair<Sass::Complex_Selector*, Sass::Compound_Selector*> >&, std::__1::set<Sass::Compound_Selector, std::__1::less<Sass::Compound_Selector>, std::__1::allocator<Sass::Compound_Selector> >, bool, bool)+0x17da
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# ~/Workspace/PlayServer/hs_err_pid47871.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.