### Selector Interpolation with Extend ``` @variable: .bucket; @{variable} { // interpolated selector color: blue; } .some-class:extend(.bucket) {} ``` will output ``` .bucket, .some-class { color: blue; } ``` It's matched!!! My version of less is 3.12.2.