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

invalid_doc_attributes should not fire on extern crate items #86046

Closed
jyn514 opened this issue Jun 6, 2021 · 1 comment · Fixed by #86047
Closed

invalid_doc_attributes should not fire on extern crate items #86046

jyn514 opened this issue Jun 6, 2021 · 1 comment · Fixed by #86047
Assignees
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-bug Category: This is a bug. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@jyn514
Copy link
Member

jyn514 commented Jun 6, 2021

I tried this code:

#[doc(inline)]
pub extern crate cre;

I expected to see this happen: Rustdoc gives no warning, and shows the module "core" instead of "pub use extern crate core".

Instead, this happened: Rustdoc shows the module, but still gives a warning:

warning: this attribute can only be applied to a `use` item
 --> src\main.rs:1:7
  |
1 | #[doc(inline)]
  |       ^^^^^^ only applicable on `use` items
2 | pub extern crate std;
  | --------------------- not a `use` item
  |
  = note: `#[warn(invalid_doc_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: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730>
  = note: read https://doc.rust-lang.org/nightly/rustdoc/the-doc-attribute.html#docno_inlinedocinline for more information

Meta

rustc --version: rustc 1.54.0-nightly (cc77ba4 2021-06-03)

@jyn514 jyn514 added A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. C-bug Category: This is a bug. labels Jun 6, 2021
@jyn514
Copy link
Member Author

jyn514 commented Jun 6, 2021

Note that this is a rustc lint, and the false positive also happens with rustc instead of rustdoc.

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. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant