Example: ``` div { span { @at-root { & { color: red; } } } } ``` should produce (tested using https://www.sassmeister.com/, https://beautifytools.com/scss-compiler.php and https://sass.js.org/): ``` div span { color: red; } ``` but using scssphp the result is: ``` span { color: red; } ```