.scope {
@var: 99px;
.mixin () {
width: @var;
}
.class {
.scope > .mixin;
.overwrite {
@var: 0px;
.nested {
@var: 5px;
@var: 10px;
.mixin;