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
Just as a heads up rust-lang/rust#94963 changed the way this kind of impls on builtin and foreign types are handled. Libcore now uses #![rustc_coherence_is_core] to allow impls on any builtin type without #[lang = "..."] and other sysroot crates use #[rustc_allow_incoherent_impl] on all impl items for non-local impls.
Just as a heads up rust-lang/rust#94963 changed the way this kind of impls on builtin and foreign types are handled. Libcore now uses
#![rustc_coherence_is_core]
to allow impls on any builtin type without#[lang = "..."]
and other sysroot crates use#[rustc_allow_incoherent_impl]
on all impl items for non-local impls.Originally posted by @bjorn3 in #1086 (comment)
The text was updated successfully, but these errors were encountered: