1<===> options.yml 2--- 3:warning_todo: 4- sass/libsass#2834 5 6<===> input.scss 7$foo: \/ !global; 8.foo#{$foo}bar { a: b; } 9 10<===> output.css 11.foo\/bar { 12 a: b; 13} 14 15<===> warning 16DEPRECATION WARNING: As of Dart Sass 2.0.0, !global assignments won't be able to 17declare new variables. Since this assignment is at the root of the stylesheet, 18the !global flag is unnecessary and can safely be removed. 19 20 , 211 | $foo: \/ !global; 22 | ^^^^^^^^^^^^^^^^ 23 ' 24 input.scss 1:1 root stylesheet 25