Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

False negatives for missing_docs_in_private_items since 1.79. #14301

Open
nmathewson opened this issue Feb 26, 2025 · 2 comments
Open

False negatives for missing_docs_in_private_items since 1.79. #14301

nmathewson opened this issue Feb 26, 2025 · 2 comments
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

Comments

@nmathewson
Copy link
Contributor

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.

//! Documented.

#![deny(clippy::missing_docs_in_private_items)]

/// Documented.
#[derive(Debug)]
#[allow(dead_code)]
struct Mine {
    //// Note use of four /s.  No warning here.
    undocumented_1: String,
}

#[derive(serde::Deserialize)]
pub(crate) struct Undocumented2 {}

Here's the Cargo.toml I used:

[package]
name = "clippy-repro"
version = "0.1.0"
edition = "2021"

[features]
f = []

[dependencies]
serde = { version = "1.0.218", features = ["derive"] }

I expected to see warnings from undocumented_1 and Undocumented2.

Instead, no warnings were produced.

I tried removing #[derive(Debug)] from Mine: It caused a warning to start appearing on Undocumented2!

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

rustc 1.85.0 (4d91de4e4 2025-02-17)
binary: rustc
commit-hash: 4d91de4e48198da2e33413efdcd9cd2cc0c46688
commit-date: 2025-02-17
host: x86_64-unknown-linux-gnu
release: 1.85.0
LLVM version: 19.1.7
@nmathewson nmathewson added 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 labels Feb 26, 2025
@nmathewson
Copy link
Contributor Author

This might be related to #13996

@nmathewson
Copy link
Contributor Author

nmathewson commented Feb 27, 2025

I have experimentally tried reverting several of the docs-related commits added between Rust 1.78 and Rust 1.79. If I revert adc91e4, I think I see these warnings again.

(I say "I think" because I am not super familiar with hacking on the clippy toolchain.)

I am no longer sure about this; I will have to test more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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
Projects
None yet
Development

No branches or pull requests

1 participant