ruby-sass icon indicating copy to clipboard operation
ruby-sass copied to clipboard

Extend fails if selector fails to unify

Open glebm opened this issue 5 years ago • 1 comments

repro;

x {
 @extend #{&};
 @extend #{&};
}

output:

Error: "x" failed to @extend "x".
       The selector "x" was not found.

expected output: `` (empty, no error as per #2250)

refs: sass/libsass#2782

glebm avatar Dec 04 '18 01:12 glebm

Note that this reproduces with just x {@extend x}. It should produce no output.

nex3 avatar Dec 04 '18 20:12 nex3