-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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 regression: account for impl methods in arg count mismatch error #47747
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
b49f623
to
6006b67
Compare
@bors r+ |
📌 Commit 6006b67 has been approved by |
@bors rollup |
I don't think this should be a rollup -- it fixes a regression, after all. |
Well, I guess it depends what rollup means. I tend to think of it as "low risk and it lands when it lands", but maybe that's not quite right. |
My rationale was that it had a better chance of landing sooner without giving it a higher priority, given that it is a small change and didn't want to take a while slot for it. Feel free to change it removing the rollup and increasing the priority. |
Fix regression: account for trait methods in arg count mismatch error Fixed rust-lang#47706 (rust-lang#47706 (comment)) Original PR rust-lang#47747 missed methods on trait definitions. This edit was done in GitHub. I think I got the signature of the variant right, going by the ICE debug output and the other cases above.
Fix #47706.