``` less /* main.less */ html[lang="ru"] { @import "languages/ru/clip.less"; } ``` ``` less /* clip.less */ .clip { &_sublabel { ... } &_module[data-module="touristinfo"] &_details { ... } } ``` Result: ``` css /* correct */ html[lang="ru"] .clip_sublabel { ... } /* incorrect */ html[lang="ru"] .clip_module[data-module="touristinfo"] html[lang="ru"] .clip_details { ... } /* expected */ html[lang="ru"] .clip_module[data-module="touristinfo"] .clip_details { ... } ``` OS: Ubuntu 14.10 Less-Version: `less@1.7.5`