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

Fix ICE for intra-doc link on intermediate re-export #109282

Closed
GuillaumeGomez opened this issue Mar 17, 2023 · 0 comments · Fixed by #109330
Closed

Fix ICE for intra-doc link on intermediate re-export #109282

GuillaumeGomez opened this issue Mar 17, 2023 · 0 comments · Fixed by #109330
Assignees
Labels
C-bug Category: This is a bug. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Comments

@GuillaumeGomez
Copy link
Member

mod m {
    pub enum ValueEnum {}
}
mod m2 {
    /// [`ValueEnum`]
    pub	use crate::m::ValueEnum;
}
pub use m2::ValueEnum;

It needs to generalize the fix implemented in #109266.

@GuillaumeGomez GuillaumeGomez added T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. C-bug Category: This is a bug. labels Mar 17, 2023
@GuillaumeGomez GuillaumeGomez self-assigned this Mar 17, 2023
GuillaumeGomez added a commit to GuillaumeGomez/rust that referenced this issue Mar 23, 2023
@bors bors closed this as completed in 52c8084 Mar 27, 2023
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. T-rustdoc Relevant to the rustdoc 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