I'm doing some class extensions in Less, but it's silently failing if the class I attempt to extend isn't found. I'd really like to see a warning about that. Is there a way to enable it?
.foo {
&:extend(.bar); // .bar is undefined, fails silently
}