You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another related issue here is that we have no way to take into account re-exports -- see the reference to core, for example, and not std.
(Handling re-exports may require some sort of annotations though.)
<anon>:4:5: 4:50 error: the trait `core::clone::Clone` is not implemented for the type `core::sync::atomic::AtomicBool` [E0277]
<anon>:4 assert_clone::<std::sync::atomic::AtomicBool>();
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This should show std::clone::Clone and std::sync::atomic::AtomicBool since core isn't even linked into or reachable from the local crate.
The text was updated successfully, but these errors were encountered:
mitaa
changed the title
Absolute paths are not correct for external re-exported items
Absolute paths are not correct for re-exported items
Nov 16, 2015
(extracted from #1920)
@nikomatsakis
This should show
std::clone::Clone
andstd::sync::atomic::AtomicBool
sincecore
isn't even linked into or reachable from the local crate.The text was updated successfully, but these errors were encountered: