<!-- Hi there! Whether you've come to make a suggestion for a new lint, an improvement to an existing lint or to report a bug or a false positive in Clippy, you've come to the right place. For bug reports and false positives, please include the output of `cargo clippy -V` in the report. Thank you for using Clippy! Write your comment below this line: --> Example: ```rust #![warn(clippy::missing_inline_in_public_items)] #[derive(Debug)] pub struct S {} ``` ``` warning: missing `#[inline]` for a method --> src/lib.rs:3:10 | 3 | #[derive(Debug)] | ^^^^^ ``` I don't think Clippy should warn about this, since the user cannot control the code in question.