pub static USELESS_DEPRECATED: &'static Lint
The useless_deprecated lint detects deprecation attributes with no effect.
useless_deprecated
struct X; #[deprecated = "message"] impl Default for X { fn default() -> Self { X } }
{{produces}}
Deprecation attributes have no effect on trait implementations.