summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss/var-guarded.scss
blob: 8f7aab8fa94084c73705ed0a0018d41cdc0e5bb7 (plain)
1
2
3
4
5
6
7
8
$content: "First content";
$content: "Second content?" !default;
$new_content: "First time reference" !default;

#main {
  content: $content;
  new-content: $new_content;
}