False negatives for missing_docs_in_private_items since 1.79. #14301
Labels
C-bug
Category: Clippy is not doing the correct thing
I-false-negative
Issue: The lint should have been triggered on code, but wasn't
Summary
Apparently there are circumstances where missing_docs_in_private_items fails to report errors; they seem to have strange, non-local behavior.
Lint Name
missing_docs_in_private_items
Reproducer
I ran
cargo clippy --all-features
with Rust 1.85 using this code as my lib.rs.Here's the Cargo.toml I used:
I expected to see warnings from
undocumented_1
andUndocumented2
.Instead, no warnings were produced.
I tried removing
#[derive(Debug)]
fromMine
: It caused a warning to start appearing onUndocumented2
!I tried with older versions of Clippy: Rust version 1.78 and earlier correctly give warnings; Rust 1.79 is the first version that fails to warn at all.
Version
The text was updated successfully, but these errors were encountered: