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
This compiles correctly, but rust-analyzer thinks the derive macro contains an error: "expected &dyn Debug, found &[u8]". Oddly, derive macros for Eq, PartialEq, Ord, and PartialOrd, all function correctly.
The text was updated successfully, but these errors were encountered:
I think this one is different. &[u8] is not coercible into &dyn Debug since [u8] is unsized, but &&[u8] is coercible. Rustc uses double reference for last field, we should either do the same or use double reference always which I think is harmless.
rust-analyzer version: 0.3.1506-standalone
rustc version: 1.69.0
relevant settings: N/A
This compiles correctly, but rust-analyzer thinks the derive macro contains an error: "expected &dyn Debug, found &[u8]". Oddly, derive macros for Eq, PartialEq, Ord, and PartialOrd, all function correctly.
The text was updated successfully, but these errors were encountered: