When a binding's `@scope` has the same name as a module, the binding's scope is shadowed by the module: ```rescript module URL = { @val @scope("URL") external revokeObjectURL: string => unit = "revokeObjectURL" } URL.revokeObjectURL("some url") ``` ```rescript let URL = {}; URL.revokeObjectURL("some url"); ```