rust-lang/rust

`missing-docs` lint reports on `#[test]` macro

Closed this issue · 2 comments

I tried this code:

#![deny(missing_docs)]

//! Docs

#[test]
fn foo() {}

I expected to see this happen: no errors

Instead, this happened:

> cargo check --all-targets
error: missing documentation for a constant
 --> src/lib.rs:6:1
  |
5 | #[test]
  | ------- in this procedural macro expansion
6 | fn foo() {}
  | ^^^^^^^^^^^
  |
note: the lint level is defined here
 --> src/lib.rs:1:9
  |
1 | #![deny(missing_docs)]
  |         ^^^^^^^^^^^^
  = note: this error originates in the attribute macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)

Meta

rustc --version --verbose:

rustc 1.83.0-nightly (0ee7cb5e3 2024-09-10)
binary: rustc
commit-hash: 0ee7cb5e3633502d9a90a85c3c367eccd59a0aba
commit-date: 2024-09-10
host: x86_64-unknown-linux-gnu
release: 1.83.0-nightly
LLVM version: 19.1.0

Very likely to be #130025 related

Looks like a1a8627 (#130025) allowed missing docs on the generated main function, but didn't test having any actual #[test]s.

cc @Urgau

Attempt fix in #130219