X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Ftools%2Fclippy%2Fclippy_lints%2Fsrc%2Ftransmute%2Fmod.rs;h=23cb9d40dfdc9143cd4eb34cdfee83956579e618;hb=3585e1c22fa8ad192a5e5c66c9523b21b382ecc8;hp=1da3b765904813d4407d31d622b6a36049392d6e;hpb=b7511248f9c1b00f4dd7b32f3323cd42a3d91172;p=rust.git diff --git a/src/tools/clippy/clippy_lints/src/transmute/mod.rs b/src/tools/clippy/clippy_lints/src/transmute/mod.rs index 1da3b765904..23cb9d40dfd 100644 --- a/src/tools/clippy/clippy_lints/src/transmute/mod.rs +++ b/src/tools/clippy/clippy_lints/src/transmute/mod.rs @@ -364,6 +364,10 @@ /// ### Why is this bad? /// The results of such a transmute are not defined. /// + /// ### Known problems + /// This lint has had multiple problems in the past and was moved to `nursery`. See issue + /// [#8496](https://github.com/rust-lang/rust-clippy/issues/8496) for more details. + /// /// ### Example /// ```rust /// struct Foo(u32, T);