Open
Description
I noticed this in https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/traits/consts/trait.ConstMethods.html#tymethod.scalar_to_backend today:
Those two Scalar
s are actually different types, however.
It would be nice to detect things like this and show some distinguisher. Maybe value::Scalar
and rustc_abi::Scalar
-- including enough module context to distinguish -- or something? Or maybe show the crate name?
(Crate name might be good, since a single crate can fix multiple types with the same name, if needed.)