1<===> options.yml
2---
3:warning_todo:
4- sass/libsass#2887
5
6<===> input.scss
7.result {
8  output: (0Hz + 1Hz);
9  output: (4.2Hz / 1Hz);
10  output: (4.2Hz * 1Hz / 1Hz);
11  output: (0Hz + 1kHz);
12  output: (4.2Hz / 1kHz);
13  output: (4.2Hz * 1kHz / 1Hz);
14  output: (0kHz + 1Hz);
15  output: (4.2kHz / 1Hz);
16  output: (4.2kHz * 1Hz / 1kHz);
17  output: (0kHz + 1kHz);
18  output: (4.2kHz / 1kHz);
19  output: (4.2kHz * 1kHz / 1kHz);
20}
21
22<===> output.css
23.result {
24  output: 1Hz;
25  output: 4.2;
26  output: 4.2Hz;
27  output: 1000Hz;
28  output: 0.0042;
29  output: 4.2kHz;
30  output: 0.001kHz;
31  output: 4200;
32  output: 4.2Hz;
33  output: 1kHz;
34  output: 4.2;
35  output: 4.2kHz;
36}
37
38<===> warning
39DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
40
41Recommendation: math.div(4.2Hz, 1Hz)
42
43More info and automated migrator: https://sass-lang.com/d/slash-div
44
45  ,
463 |   output: (4.2Hz / 1Hz);
47  |            ^^^^^^^^^^^
48  '
49    input.scss 3:12  root stylesheet
50
51DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
52
53Recommendation: math.div(4.2Hz * 1Hz, 1Hz)
54
55More info and automated migrator: https://sass-lang.com/d/slash-div
56
57  ,
584 |   output: (4.2Hz * 1Hz / 1Hz);
59  |            ^^^^^^^^^^^^^^^^^
60  '
61    input.scss 4:12  root stylesheet
62
63DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
64
65Recommendation: math.div(4.2Hz, 1kHz)
66
67More info and automated migrator: https://sass-lang.com/d/slash-div
68
69  ,
706 |   output: (4.2Hz / 1kHz);
71  |            ^^^^^^^^^^^^
72  '
73    input.scss 6:12  root stylesheet
74
75DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
76
77Recommendation: math.div(4.2Hz * 1kHz, 1Hz)
78
79More info and automated migrator: https://sass-lang.com/d/slash-div
80
81  ,
827 |   output: (4.2Hz * 1kHz / 1Hz);
83  |            ^^^^^^^^^^^^^^^^^^
84  '
85    input.scss 7:12  root stylesheet
86
87DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
88
89Recommendation: math.div(4.2kHz, 1Hz)
90
91More info and automated migrator: https://sass-lang.com/d/slash-div
92
93  ,
949 |   output: (4.2kHz / 1Hz);
95  |            ^^^^^^^^^^^^
96  '
97    input.scss 9:12  root stylesheet
98
99DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
100
101Recommendation: math.div(4.2kHz * 1Hz, 1kHz)
102
103More info and automated migrator: https://sass-lang.com/d/slash-div
104
105   ,
10610 |   output: (4.2kHz * 1Hz / 1kHz);
107   |            ^^^^^^^^^^^^^^^^^^^
108   '
109    input.scss 10:12  root stylesheet
110
111DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
112
113Recommendation: math.div(4.2kHz, 1kHz)
114
115More info and automated migrator: https://sass-lang.com/d/slash-div
116
117   ,
11812 |   output: (4.2kHz / 1kHz);
119   |            ^^^^^^^^^^^^^
120   '
121    input.scss 12:12  root stylesheet
122
123DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
124
125Recommendation: math.div(4.2kHz * 1kHz, 1kHz)
126
127More info and automated migrator: https://sass-lang.com/d/slash-div
128
129   ,
13013 |   output: (4.2kHz * 1kHz / 1kHz);
131   |            ^^^^^^^^^^^^^^^^^^^^
132   '
133    input.scss 13:12  root stylesheet
134
135