``` .guard () when (@variable) { a { color: red; } } ``` Variable isn't defined, therefore no output. ``` @variable: true; .guard () when (@variable) { a { color: red; } } ``` Variable is definied, therefore output: ``` a { color: red; } ```