<===> input.scss
foo {
  &-- {
    &baz {
      color: red;
    } 
  } 
} 
<===> output.css
foo--baz {
  color: red;
}