-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Use a more accurate span on assoc types WF checks #87819
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
r? @davidtwco (rust-highfive has picked a reviewer for you, use r? to override) |
r? @jackh726 |
266b6b6
to
89be36c
Compare
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.
r=me with or without nit
89be36c
to
c046d62
Compare
@bors r=jackh726 |
📌 Commit c046d62 has been approved by |
⌛ Testing commit c046d62 with merge c4c4951e5d69ee922392964f565c81680b7e1cab... |
💔 Test failed - checks-actions |
@bors retry |
This comment has been minimized.
This comment has been minimized.
Use a more accurate span on assoc types WF checks Before ``` error[E0275]: overflow evaluating the requirement `<FooStruct as Foo>::A == _` --> $DIR/issue-21946.rs:8:5 | LL | type A = <FooStruct as Foo>::A; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` after ``` error[E0275]: overflow evaluating the requirement `<FooStruct as Foo>::A == _` --> $DIR/issue-21946.rs:8:14 | LL | type A = <FooStruct as Foo>::A; | ^^^^^^^^^^^^^^^^^^^^^ ```
@bors retry |
#87811 added one more test that needs a change to span: #87908 (comment) |
c046d62
to
3a515ae
Compare
@bors r=jackh726 |
📌 Commit 3a515ae has been approved by |
…laumeGomez Rollup of 4 pull requests Successful merges: - rust-lang#87819 (Use a more accurate span on assoc types WF checks) - rust-lang#87863 (Fix Windows Command::env("PATH")) - rust-lang#87885 (Link to edition guide instead of issues for 2021 lints.) - rust-lang#87941 (Fix/improve rustdoc-js tool) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Before
after