1<===> input.scss
2.foo {
3  &--#{'bar'} {
4    color: red;
5  }
6}
7<===> output.css
8.foo--bar {
9  color: red;
10}
11