Skip to content

Commit cf4bdd0

Browse files
committed
safe transmute: add rustc_on_unimplemented to BikeshedIntrinsicFrom
ref: rust-lang/rust#92268 (comment)
1 parent 8251b9b commit cf4bdd0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

core/src/mem/transmutability.rs

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
/// notwithstanding whatever safety checks you have asked the compiler to [`Assume`] are satisfied.
66
#[unstable(feature = "transmutability", issue = "none")]
77
#[cfg_attr(not(bootstrap), lang = "transmute_trait")]
8+
#[rustc_on_unimplemented(
9+
message = "`{Src}` cannot be safely transmuted into `{Self}` in the defining scope of `{Context}`.",
10+
label = "`{Src}` cannot be safely transmuted into `{Self}` in the defining scope of `{Context}`."
11+
)]
812
pub unsafe trait BikeshedIntrinsicFrom<
913
Src,
1014
Context,

0 commit comments

Comments
 (0)