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 positive unused_attributes lint on doc(hidden) attribute on associated type #96890

Closed
dtolnay opened this issue May 10, 2022 · 6 comments · Fixed by #98336
Closed

False positive unused_attributes lint on doc(hidden) attribute on associated type #96890

dtolnay opened this issue May 10, 2022 · 6 comments · Fixed by #98336
Assignees
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-bug Category: This is a bug.

Comments

@dtolnay
Copy link
Member

dtolnay commented May 10, 2022

The warning added by #96008 claims that doc(hidden) on an impl item is ignored by rustdoc, but it isn't necessarily.

The warning says:

whether the impl item is `doc(hidden)` or not entirely depends on the corresponding trait item

which is not true in the following repro:

pub trait Trait {
    type A;
    type B;
}

pub struct Struct;

impl Trait for Struct {
    type A = [(); "interesting type".len()];
    #[doc(hidden)]
    type B = [(); "nasty uninteresting type".len()];
}
$ cargo check
warning: `#[doc(hidden)]` is ignored on trait impl items
  --> src/lib.rs:10:5
   |
10 |     #[doc(hidden)]
   |     ^^^^^^^^^^^^^^ help: remove this attribute
   |
   = note: `#[warn(unused_attributes)]` on by default
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: whether the impl item is `doc(hidden)` or not entirely depends on the corresponding trait item

This warning is a false positive. Rustdoc does pay attention to this attribute. For the code above, the rendered documentation of Struct and Trait looks like:

After removing the supposedly unused doc(hidden) attribute and rendering again, the "nasty uninteresting type" that we wanted not shown is going to get rendered on both pages:

(@fmease @lcnr)

Meta

rustc --version --verbose:

rustc 1.62.0-nightly (88860d547 2022-05-09)
binary: rustc
commit-hash: 88860d5474a32f507dde8fba8df35fd2064f11b9
commit-date: 2022-05-09
host: x86_64-unknown-linux-gnu
release: 1.62.0-nightly
LLVM version: 14.0.1
@dtolnay dtolnay added the C-bug Category: This is a bug. label May 10, 2022
@dtolnay dtolnay added the A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. label May 10, 2022
@fmease
Copy link
Member

fmease commented May 10, 2022

My bad, I did not notice that at all 😳. I can adjust the lint once it's decided how we are going to proceed with my changes in general (see / blocked on #96008 (comment)).

@rustbot claim

@fmease
Copy link
Member

fmease commented May 10, 2022

In summary, #[doc(hidden)] on methods in trait impl blocks does not lead to any visual changes in the documentation whereas on associated types and constants, it hides the implementation (or “the thing to the right of the =”).

This weirdly deviates from my (former) personal mental model of how #[doc(hidden)] is supposed to work and be used. As far as I know, in all other cases, it leads to items, impl blocks, fields (“names” or “declarations”) not being shown. Here, however, the “name” keeps being shown, only the “value” is hidden. Hiding an inherent assoc item for example, hides the item completely. “Hiding” a trait impl item is, in my opinion, currently handled inconsistently by rustdoc and shouldn't lead to any visual changes (or rather “shouldn't be allowed”).

Out of curiosity, @ dtolnay, how / why do you use this feature? Do you use it to reduce visual clutter?

Edit: Ah, well, I overlooked the top right picture. So in some cases the item is indeed entirely hidden, not just the value.

@fmease
Copy link
Member

fmease commented May 10, 2022

Zulip discussion

@fmease
Copy link
Member

fmease commented May 20, 2022

Should I remove the lint entirely or should I adjust #[doc(hidden)]?

@SergioBenitez
Copy link
Contributor

SergioBenitez commented May 23, 2022

Just wanted to add that this is also affecting rocket, but in a different way:

impl<'a> Origin<'a> {
    /// The root: `'/'`.
    #[doc(hidden)]
    pub const ROOT: Origin<'static> = Origin::const_new("/", None);
}
   --> core/http/src/uri/origin.rs:119:5
    |
119 |     #[doc(hidden)]
    |     ^^^^^^^^^^^^^^ help: remove this attribute
    |
    = note: `#[warn(unused_attributes)]` on by default
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: whether the impl item is `doc(hidden)` or not entirely depends on the corresponding trait item

The const isn't there at all without the doc(hidden):

In summary, #[doc(hidden)] on methods in trait impl blocks does not lead to any visual changes in the documentation whereas on associated types and constants, it hides the implementation (or “the thing to the right of the =”).

Based on the above, this isn't correct: it actually hides the entire thing, at least for associated constants.

@fmease
Copy link
Member

fmease commented May 24, 2022

In your case, it's inherent associated items being accidentally flagged which is #97205 which was closed by #97208 meaning the most recent nightly should not have your issue anymore. Sorry for the inconvenience. The longer I look this lint, the less I like it.

@bors bors closed this as completed in b887da1 Jun 22, 2022
ehuss pushed a commit to ehuss/rust that referenced this issue Jun 24, 2022
…t, r=GuillaumeGomez

Remove the unused-`#[doc(hidden)]` logic from the `unused_attributes` lint

Fixes rust-lang#96890.

It was found out that `#[doc(hidden)]` on trait impl items does indeed have an effect on the generated documentation (see the linked issue). In my opinion and the one of [others](https://rust-lang.zulipchat.com/#narrow/stream/266220-rustdoc/topic/Validy.20checks.20for.20.60.23.5Bdoc.28hidden.29.5D.60/near/281846219), rustdoc's output is actually a bit flawed in that regard but that should be tracked in a new issue I suppose (I will open an issue for that in the near future).

The check was introduced in rust-lang#96008 which is marked to be part of version `1.62` (current `beta`). As far as I understand, this means that **this PR needs to be backported** to `beta` to fix rust-lang#96890 on time. Correct me if I am wrong.

CC `@dtolnay` (in case you would like to agree or disagree with my decision to fully remove this check)

`@rustbot` label A-lint T-compiler T-rustdoc

r? `@rust-lang/compiler`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-bug Category: This is a bug.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants