summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/if-lazy.scss
blob: 87ee44987182d1fca45d473b600d3b934b0fda07 (plain)
1
2
3
4
5
6
p {
    // if()'s arguments are evaluated lazily.  $bogus doesn't exist, so if
    // those expressions are ever evaluated, pyscss will die with an error
    color: if(false, $bogus, red);
    color: if(true, blue, $bogus);
}