Some code that breaks - example will not be imported, but example2 will:
.example-code
color: pink
@import 'example.sss'
@import 'example2.sss'
And a workaround that fixes it (both imported successfully):
.example-code
color: pink
@import ''
@import 'example.sss'
@import 'example2.sss'