-
Notifications
You must be signed in to change notification settings - Fork 13k
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
remove the usize field from CandidateSource::AliasBound #107401
remove the usize field from CandidateSource::AliasBound #107401
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @eholk (or someone else) soon. Please see the contribution instructions for more information. |
Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor |
Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor |
r? @compiler-errors @bors r+ rollup |
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#106618 (Disable `linux_ext` in wasm32 and fortanix rustdoc builds.) - rust-lang#107097 (Fix def-use dominance check) - rust-lang#107154 (library/std/sys_common: Define MIN_ALIGN for m68k-unknown-linux-gnu) - rust-lang#107397 (Gracefully exit if --keep-stage flag is used on a clean source tree) - rust-lang#107401 (remove the usize field from CandidateSource::AliasBound) - rust-lang#107413 (make more pleasant to read) - rust-lang#107422 (Also erase substs for new infcx in pin move error) - rust-lang#107425 (Check for missing space between fat arrow and range pattern) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
@@ -76,7 +76,7 @@ pub(super) enum CandidateSource { | |||
/// let _y = x.clone(); | |||
/// } | |||
/// ``` | |||
AliasBound(usize), | |||
AliasBound, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still referring to "the n-th
bound in the item_bounds
" in the doc comment
Fixes #107380