-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rustdoc shows broken anonymous lifetimes on re-exported signatures #98697
Labels
C-bug
Category: This is a bug.
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
Comments
Bisect:$ cat bisect.sh
#!/bin/bash
cargo doc
not rg "for<" $CARGO_TARGET_DIR/doc
$ cargo-bisect-rustc --start 2022-03-31 --end 2022-06-30 --script ./bisect.sh bisects to 10f4ce3 in nightly-2022-06-23 (#98279 — @cjgillot @petrochenkov) |
dtolnay
added
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
labels
Jun 30, 2022
rustbot
added
the
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
label
Jun 30, 2022
dtolnay
added
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
and removed
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
labels
Jun 30, 2022
Example affecting the standard library docs:
|
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Jun 30, 2022
…GuillaumeGomez rustdoc: filter '_ lifetimes from ty::PolyTraitRef Fixes rust-lang#98697
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Jul 1, 2022
…GuillaumeGomez rustdoc: filter '_ lifetimes from ty::PolyTraitRef Fixes rust-lang#98697
apiraino
removed
the
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
label
Jul 1, 2022
Mark-Simulacrum
pushed a commit
to Mark-Simulacrum/rust
that referenced
this issue
Jul 9, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Category: This is a bug.
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
The correct behavior is for both crates' docs to render
repro
as:However, recent versions of nightly rustdoc render
foo::repro
as the above, while renderingrepro::repro
incorrectly as:I believe this is a bug because that is not valid syntax in Rust.
The text was updated successfully, but these errors were encountered: