<===> input.scss
.sibling {
    & ~ & {
        foo: bar;
    }
}

<===> output.css
.sibling ~ .sibling {
  foo: bar;
}