1<===> function/built_in/input.scss
2@import 'plain'
3<===> function/built_in/plain.css
4a {
5  x: index(1 2 3, 1);
6}
7
8<===> function/built_in/error
9Error: This function isn't allowed in plain CSS.
10  ,
112 |   x: index(1 2 3, 1);
12  |      ^^^^^^^^^^^^^^^
13  '
14  plain.css 2:6   @import
15  input.scss 1:9  root stylesheet
16
17<===>
18================================================================================
19<===> function/variable_arguments/input.scss
20@import 'plain'
21<===> function/variable_arguments/plain.css
22a {
23  x: hsl(0, 100%, 50%...);
24}
25
26<===> function/variable_arguments/error
27Error: expected ")".
28  ,
292 |   x: hsl(0, 100%, 50%...);
30  |                      ^
31  '
32  plain.css 2:22  @import
33  input.scss 1:9  root stylesheet
34
35<===>
36================================================================================
37<===> function/keyword_arguments/input.scss
38@import 'plain'
39<===> function/keyword_arguments/plain.css
40a {
41  x: hsl(0, 100%, $lightness: 50%);
42}
43
44<===> function/keyword_arguments/error
45Error: Sass variables aren't allowed in plain CSS.
46  ,
472 |   x: hsl(0, 100%, $lightness: 50%);
48  |                   ^^^^^^^^^^
49  '
50  plain.css 2:19  @import
51  input.scss 1:9  root stylesheet
52
53<===>
54================================================================================
55<===> list/empty/input.scss
56@import 'plain'
57<===> list/empty/plain.css
58a {
59  x: ();
60}
61
62<===> list/empty/error
63Error: Parentheses aren't allowed in plain CSS.
64  ,
652 |   x: ();
66  |      ^
67  '
68  plain.css 2:6   @import
69  input.scss 1:9  root stylesheet
70
71<===>
72================================================================================
73<===> list/empty_comma/input.scss
74@import 'plain'
75<===> list/empty_comma/plain.css
76a {
77  x: (,);
78}
79
80<===> list/empty_comma/error
81Error: Parentheses aren't allowed in plain CSS.
82  ,
832 |   x: (,);
84  |      ^
85  '
86  plain.css 2:6   @import
87  input.scss 1:9  root stylesheet
88
89<===>
90================================================================================
91<===> map/input.scss
92@import 'plain'
93<===> map/plain.css
94a {
95  x: (y: z);
96}
97
98<===> map/error
99Error: Parentheses aren't allowed in plain CSS.
100  ,
1012 |   x: (y: z);
102  |      ^
103  '
104  plain.css 2:6   @import
105  input.scss 1:9  root stylesheet
106
107<===>
108================================================================================
109<===> parentheses/input.scss
110@import 'plain'
111<===> parentheses/plain.css
112a {
113  x: (y);
114}
115
116<===> parentheses/error
117Error: Parentheses aren't allowed in plain CSS.
118  ,
1192 |   x: (y);
120  |      ^
121  '
122  plain.css 2:6   @import
123  input.scss 1:9  root stylesheet
124
125<===>
126================================================================================
127<===> parent_selector/input.scss
128@import 'plain'
129<===> parent_selector/plain.css
130a {
131  x: &;
132}
133
134<===> parent_selector/error
135Error: The parent selector isn't allowed in plain CSS.
136  ,
1372 |   x: &;
138  |      ^
139  '
140  plain.css 2:6   @import
141  input.scss 1:9  root stylesheet
142
143<===>
144================================================================================
145<===> variable/use/input.scss
146@import 'plain'
147<===> variable/use/plain.css
148a {
149  x: $var;
150}
151
152<===> variable/use/error
153Error: Sass variables aren't allowed in plain CSS.
154  ,
1552 |   x: $var;
156  |      ^^^^
157  '
158  plain.css 2:6   @import
159  input.scss 1:9  root stylesheet
160
161<===>
162================================================================================
163<===> variable/declaration/input.scss
164@import 'plain'
165<===> variable/declaration/plain.css
166$var: value;
167
168<===> variable/declaration/error
169Error: Sass variables aren't allowed in plain CSS.
170  ,
1711 | $var: value;
172  | ^^^^
173  '
174  plain.css 1:1   @import
175  input.scss 1:9  root stylesheet
176
177<===>
178================================================================================
179<===> interpolation/calc/input.scss
180@import 'plain'
181<===> interpolation/calc/plain.css
182a {
183  w: calc(#{1px} + 10%);
184}
185
186<===> interpolation/calc/error
187Error: Interpolation isn't allowed in plain CSS.
188  ,
1892 |   w: calc(#{1px} + 10%);
190  |           ^^^^^^
191  '
192  plain.css 2:11  @import
193  input.scss 1:9  root stylesheet
194
195<===>
196================================================================================
197<===> interpolation/identifier/input.scss
198@import 'plain'
199<===> interpolation/identifier/plain.css
200a {
201  w: x#{y}z;
202}
203
204<===> interpolation/identifier/error
205Error: Interpolation isn't allowed in plain CSS.
206  ,
2072 |   w: x#{y}z;
208  |       ^^^^
209  '
210  plain.css 2:7   @import
211  input.scss 1:9  root stylesheet
212
213<===>
214================================================================================
215<===> interpolation/quoted_string/input.scss
216@import 'plain'
217<===> interpolation/quoted_string/plain.css
218a {
219  w: "x#{y}z";
220}
221
222<===> interpolation/quoted_string/error
223Error: Interpolation isn't allowed in plain CSS.
224  ,
2252 |   w: "x#{y}z";
226  |        ^^^^
227  '
228  plain.css 2:8   @import
229  input.scss 1:9  root stylesheet
230
231<===>
232================================================================================
233<===> interpolation/standalone/input.scss
234@import 'plain'
235<===> interpolation/standalone/plain.css
236a {
237  w: #{x};
238}
239
240<===> interpolation/standalone/error
241Error: Interpolation isn't allowed in plain CSS.
242  ,
2432 |   w: #{x};
244  |      ^^^^
245  '
246  plain.css 2:6   @import
247  input.scss 1:9  root stylesheet
248
249<===>
250================================================================================
251<===> operation/addition/input.scss
252@import 'plain'
253<===> operation/addition/plain.css
254a {
255  x: y + z;
256}
257
258<===> operation/addition/error
259Error: Operators aren't allowed in plain CSS.
260  ,
2612 |   x: y + z;
262  |        ^
263  '
264  plain.css 2:8   @import
265  input.scss 1:9  root stylesheet
266
267<===>
268================================================================================
269<===> operation/subtraction/input.scss
270@import 'plain'
271<===> operation/subtraction/plain.css
272a {
273  x: y - z;
274}
275
276<===> operation/subtraction/error
277Error: Operators aren't allowed in plain CSS.
278  ,
2792 |   x: y - z;
280  |        ^
281  '
282  plain.css 2:8   @import
283  input.scss 1:9  root stylesheet
284
285<===>
286================================================================================
287<===> operation/multiplication/input.scss
288@import 'plain'
289<===> operation/multiplication/plain.css
290a {
291  x: y * z;
292}
293
294<===> operation/multiplication/error
295Error: Operators aren't allowed in plain CSS.
296  ,
2972 |   x: y * z;
298  |        ^
299  '
300  plain.css 2:8   @import
301  input.scss 1:9  root stylesheet
302
303<===>
304================================================================================
305<===> operation/modulo/input.scss
306@import 'plain'
307<===> operation/modulo/plain.css
308a {
309  x: y % z;
310}
311
312<===> operation/modulo/error
313Error: Operators aren't allowed in plain CSS.
314  ,
3152 |   x: y % z;
316  |        ^
317  '
318  plain.css 2:8   @import
319  input.scss 1:9  root stylesheet
320
321<===>
322================================================================================
323<===> operation/less_than/input.scss
324@import 'plain'
325<===> operation/less_than/plain.css
326a {
327  x: y < z;
328}
329
330<===> operation/less_than/error
331Error: Operators aren't allowed in plain CSS.
332  ,
3332 |   x: y < z;
334  |        ^
335  '
336  plain.css 2:8   @import
337  input.scss 1:9  root stylesheet
338
339<===>
340================================================================================
341<===> operation/less_than_or_equal/input.scss
342@import 'plain'
343<===> operation/less_than_or_equal/plain.css
344a {
345  x: y <= z;
346}
347
348<===> operation/less_than_or_equal/error
349Error: Operators aren't allowed in plain CSS.
350  ,
3512 |   x: y <= z;
352  |        ^^
353  '
354  plain.css 2:8   @import
355  input.scss 1:9  root stylesheet
356
357<===>
358================================================================================
359<===> operation/greater_than/input.scss
360@import 'plain'
361<===> operation/greater_than/plain.css
362a {
363  x: y > z;
364}
365
366<===> operation/greater_than/error
367Error: Operators aren't allowed in plain CSS.
368  ,
3692 |   x: y > z;
370  |        ^
371  '
372  plain.css 2:8   @import
373  input.scss 1:9  root stylesheet
374
375<===>
376================================================================================
377<===> operation/greater_than_or_equal/input.scss
378@import 'plain'
379<===> operation/greater_than_or_equal/plain.css
380a {
381  x: y >= z;
382}
383
384<===> operation/greater_than_or_equal/error
385Error: Operators aren't allowed in plain CSS.
386  ,
3872 |   x: y >= z;
388  |        ^^
389  '
390  plain.css 2:8   @import
391  input.scss 1:9  root stylesheet
392
393<===>
394================================================================================
395<===> operation/equals/input.scss
396@import 'plain'
397<===> operation/equals/plain.css
398a {
399  x: y == z;
400}
401
402<===> operation/equals/error
403Error: Operators aren't allowed in plain CSS.
404  ,
4052 |   x: y == z;
406  |        ^^
407  '
408  plain.css 2:8   @import
409  input.scss 1:9  root stylesheet
410
411<===>
412================================================================================
413<===> operation/not_equals/input.scss
414@import 'plain'
415<===> operation/not_equals/plain.css
416a {
417  x: y != z;
418}
419
420<===> operation/not_equals/error
421Error: Operators aren't allowed in plain CSS.
422  ,
4232 |   x: y != z;
424  |        ^^
425  '
426  plain.css 2:8   @import
427  input.scss 1:9  root stylesheet
428
429<===>
430================================================================================
431<===> silent_comment/input.scss
432@import 'plain'
433
434<===> silent_comment/plain.css
435a {
436  b: c // d
437     e;
438}
439
440<===> silent_comment/error
441Error: Silent comments aren't allowed in plain CSS.
442  ,
4432 |   b: c // d
444  |        ^^^^
445  '
446  plain.css 2:8   @import
447  input.scss 1:9  root stylesheet
448