File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
non_conformant/errors/invalid-operation Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ a {b: max($arg, 2s)}
155
155
156
156
157
157
<===> error/incompatible_units/error
158
- Error: 2s and 1px have incompatible units.
158
+ Error: 1px and 2s have incompatible units.
159
159
,
160
160
2 | a {b: max($arg, 2s)}
161
161
| ^^^^^^^^^^^^^
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ $arg: 1px;
154
154
a {b: min($arg, 2s)}
155
155
156
156
<===> error/incompatible_units/error
157
- Error: 2s and 1px have incompatible units.
157
+ Error: 1px and 2s have incompatible units.
158
158
,
159
159
2 | a {b: min($arg, 2s)}
160
160
| ^^^^^^^^^^^^^
Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ Error: Expected expression.
531
531
a {b: 1px + 1em}
532
532
533
533
<===> from_other/runtime/error
534
- Error: 1em and 1px have incompatible units.
534
+ Error: 1px and 1em have incompatible units.
535
535
,
536
536
1 | a {b: 1px + 1em}
537
537
| ^^^^^^^^^
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ Error: This variable is available from multiple global modules.
127
127
$a: c !default;
128
128
129
129
<===> invalid_expression/error/error
130
- Error: 1em and 1px have incompatible units.
130
+ Error: 1px and 1em have incompatible units.
131
131
,
132
132
1 | @forward "upstream" with ($a: 1px + 1em);
133
133
| ^^^^^^^^^
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ Error: This variable is available from multiple global modules.
104
104
$a: c !default;
105
105
106
106
<===> invalid_expression/error/error
107
- Error: 1em and 1px have incompatible units.
107
+ Error: 1px and 1em have incompatible units.
108
108
,
109
109
1 | @use "other" with ($a: 1px + 1em);
110
110
| ^^^^^^^^^
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ $foo: 10%; // line 1
4
4
$error: $foo + 20px; // line 3
5
5
6
6
<===> error
7
- Error: 20px and 10% have incompatible units.
7
+ Error: 10% and 20px have incompatible units.
8
8
,
9
9
3 | $error: $foo + 20px; // line 3
10
10
| ^^^^^^^^^^^
Original file line number Diff line number Diff line change 3
3
err: 2px - 2px*2px;
4
4
}
5
5
<===> error
6
- Error: 4px*px and 2px have incompatible units.
6
+ Error: 2px and 4px*px have incompatible units.
7
7
,
8
8
2 | err: 2px - 2px*2px;
9
9
| ^^^^^^^^^^^^^
You can’t perform that action at this time.
0 commit comments