summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss b/theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss
new file mode 100644
index 0000000000..fbfaed9b20
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss
@@ -0,0 +1,8 @@
+.test {
+ color: blue;
+}
+
+.test {
+ @extend .test;
+ background: red;
+} \ No newline at end of file