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

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