If we're resolving type name -> TypeDefinition (for example Type.GetType does this), and the type name is not assembly qualified, we will iterate over all assemblies and search each one for that type name. Once we find the first, we'll use that.
There's no guarantee it's the right one (if there are multiple). It would be easy to write a counter example.