We should not allow mutating a property of a namespace import: ``` ts // Library export var x = 1; // Consumer import * as stuff from 'Library'; stuff.x = 0; ``` In ES6, these bindings are immutable.