We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent becf518 commit 340805fCopy full SHA for 340805f
spec/directives/forward/member/bare.hrx
@@ -97,3 +97,26 @@ a {
97
b {
98
c: d;
99
}
100
+
101
+<===>
102
+================================================================================
103
+<===> through_forward_and_use/input.scss
104
+// Regression test for sass/sass#2744.
105
+@use "forwarder" with ($c: e);
106
107
+a {b: forwarder.$c}
108
109
+<===> through_forward_and_use/_forwarder.scss
110
+@forward "definition";
111
+@forward "user";
112
113
+<===> through_forward_and_use/_definition.scss
114
+$c: d !default;
115
116
+<===> through_forward_and_use/_user.scss
117
+@use "definition";
118
119
+<===> through_forward_and_use/output.css
120
+a {
121
+ b: e;
122
+}
0 commit comments