Just set up a repo https://github.com/chenxsan/css-module-class-conflict to demo this problem, I had these css codes ``` .title { composes: small from './border.css'; composes: small from './borderRadius.css'; } ``` in [app.css](https://github.com/chenxsan/css-module-class-conflict/blob/master/styles/app.css), expected the exported class name to be `border__small__xxxxx borderRadius__small__xxxxx`, but i got this: <img width="872" alt="screen shot 2015-09-08 at 16 19 59" src="https://cloud.githubusercontent.com/assets/1091472/9729963/e4726a02-5645-11e5-88a1-5438c2b610f8.png"> I got two `borderRadius__small__xxxxx`, the first `small` was overwritten by the second `small`. Is this an expected behavior?