-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 normalization error #40268
Fix normalization error #40268
Conversation
Nice catch! This is indeed an oversight I have made. If you can merge the 2 blocks, that would be excellent (and I'll r+ it). |
Pushed a unification and another commit which removes references to |
nit: I would rather have a name like r+ modulo nit. |
3057eb7
to
403ae37
Compare
Changed name to suggested |
@bors r+ |
📌 Commit 403ae37 has been approved by |
…wup, r=arielb1 Fix normalization error Follows rust-lang#40163. I don't know whether this is good, but seems logical. [This block of code](https://github.com/rust-lang/rust/blob/ba07bd5d23aced6d4baa5696213b11ca832c1a5d/src/librustc_typeck/check/mod.rs#L2110-L2138) doesn't contain a call to `normalize_associated_types_in`, while [this](https://github.com/rust-lang/rust/blob/master/src/librustc_typeck/check/mod.rs#L2027-L2028) block does, and is nearly identical. Ideally these two blocks should be unified into one, but since the change doesn't seem trivial and I'm unsure if this patch will be accepted it hasn't been done yet. r? @arielb1
Follows #40163. I don't know whether this is good, but seems logical.
This block of code doesn't contain a call to
normalize_associated_types_in
, while this block does, and is nearly identical.Ideally these two blocks should be unified into one, but since the change doesn't seem trivial and I'm unsure if this patch will be accepted it hasn't been done yet.
r? @arielb1