Brian Donovan (2014-06-24T17:03:22.000Z)
domenic at domenicdenicola.com (2014-06-26T15:27:12.648Z)
As Domenic said, your examples should be fine as long as the assignment happens in the module that originally exports the bindings. This is how I’ve implemented it with the new transpiler rewrite: https://github.com/square/es6-module-transpiler/tree/rewrite-with-bindings/test/examples/bindings Note that this would be an error: ```js import { a } from './a'; export { a }; a++; ```