Skip to content

Commit

Permalink
Add regression test for sass/dart-sass#2023
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwine committed Jul 12, 2023
1 parent 7e815e3 commit 5bcb747
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions spec/css/custom_properties/name_interpolation.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,20 @@ a {
a {
--b-c: d;
}

<===>
================================================================================
<===> import_nesting_use/input.scss
// Regression test for sass/dart-sass#2023
@import 'foo';

<===> import_nesting_use/foo.scss
@use 'bar';

<===> import_nesting_use/bar.scss
a { #{--}: b c }

<===> import_nesting_use/output.css
a {
--: b c;
}

0 comments on commit 5bcb747

Please sign in to comment.