diff --git a/clippy_lints/src/transmute/mod.rs b/clippy_lints/src/transmute/mod.rs index 1da3b76590481..23cb9d40dfdc9 100644 --- a/clippy_lints/src/transmute/mod.rs +++ b/clippy_lints/src/transmute/mod.rs @@ -364,6 +364,10 @@ declare_clippy_lint! { /// ### 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);