rustdoc + rustdoc-json support for feature(non_lifetime_binders)#108335
Merged
bors merged 1 commit intorust-lang:masterfrom Mar 29, 2023
Merged
rustdoc + rustdoc-json support for feature(non_lifetime_binders)#108335bors merged 1 commit intorust-lang:masterfrom
feature(non_lifetime_binders)#108335bors merged 1 commit intorust-lang:masterfrom
Conversation
Collaborator
|
r? @jsha (rustbot has picked a reviewer for you, use r? to override) |
Collaborator
|
Some changes occurred in src/librustdoc/clean/types.rs cc @camelid |
GuillaumeGomez
approved these changes
Mar 25, 2023
Member
|
Thanks! @bors r+ rollup |
Collaborator
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this pull request
Mar 26, 2023
…rs-rustdoc, r=GuillaumeGomez rustdoc + rustdoc-json support for `feature(non_lifetime_binders)` Makes `for<T> T: Trait` and `for<const N: usize> ..` in where clause operate correctly. Fixes rust-lang#108158
Member
|
@bors r- failed in a rollup :/ |
Collaborator
|
☔ The latest upstream changes (presumably #109668) made this pull request unmergeable. Please resolve the merge conflicts. |
f81cf4f to
be9fd75
Compare
Contributor
Author
|
Rebased, removed the @bors r=GuillaumeGomez |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Mar 29, 2023
Rollup of 7 pull requests Successful merges: - rust-lang#108335 (rustdoc + rustdoc-json support for `feature(non_lifetime_binders)`) - rust-lang#109534 (rustdoc: Unsupport importing `doc(primitive)` and `doc(keyword)` modules) - rust-lang#109659 (llvm-wrapper: adapt for LLVM API change) - rust-lang#109664 (Use span of placeholders in format_args!() expansion.) - rust-lang#109683 (Check for overflow in `assemble_candidates_after_normalizing_self_ty`) - rust-lang#109713 (Fix mismatched punctuation in Debug impl of AttrId) - rust-lang#109718 (Rename `IndexVec::last` → `last_index`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Makes
for<T> T: Traitandfor<const N: usize> ..in where clause operate correctly.Fixes #108158