-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix span of redundant generic arguments #85597
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 span of redundant generic arguments #85597
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Show resolved
Hide resolved
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Outdated
Show resolved
Hide resolved
Thank you for your review. I have fixed the code. @rustbot label -S-waiting-on-author +S-waiting-on-review |
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_typeck/src/structured_errors/wrong_number_of_generic_args.rs
Outdated
Show resolved
Hide resolved
r=me after addressing the remaining comments and squashing commits. |
dc5636d
to
0edf4da
Compare
Thanks a lot. I addressed the comments and squashed my commits. @rustbot label -S-waiting-on-author +S-waiting-on-review |
@bors r+ |
📌 Commit 0edf4da has been approved by |
☀️ Test successful - checks-actions |
Fixes #71563
Above issue is about lifetime arguments, but generic arguments also have same problem.
This PR fixes both help messages.