summaryrefslogtreecommitdiffstats
path: root/sass/tests/resources/scss/var-guarded.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/tests/resources/scss/var-guarded.scss')
-rw-r--r--sass/tests/resources/scss/var-guarded.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/sass/tests/resources/scss/var-guarded.scss b/sass/tests/resources/scss/var-guarded.scss
new file mode 100644
index 0000000000..8f7aab8fa9
--- /dev/null
+++ b/sass/tests/resources/scss/var-guarded.scss
@@ -0,0 +1,8 @@
+$content: "First content";
+$content: "Second content?" !default;
+$new_content: "First time reference" !default;
+
+#main {
+ content: $content;
+ new-content: $new_content;
+} \ No newline at end of file