-
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
Unsupported query error now specifies if its unsupported for local or external crate #104675
Conversation
#103808 moves |
Looks great, thank you! I suspect we can improve the error message a bit further now we have more info available but this is already very helpful :) @bors r+ |
📌 Commit b8590cc3436f9ed1abfdd92c8490aef7dcbbe811 has been approved by It is now in the queue for this repository. |
☔ The latest upstream changes (presumably #103808) made this pull request unmergeable. Please resolve the merge conflicts. |
b8590cc
to
1767f9f
Compare
@bors r+ |
Unsupported query error now specifies if its unsupported for local or external crate Fixes rust-lang#101666. I had to move `keys.rs` from `rustc_query_impl` to `rustc_middle`. I don't know if that is problematic. I couldn't think of any other way to get the needed information inside `rustc_middle`. r? ``@jyn514``
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#104121 (Refine `instruction_set` MIR inline rules) - rust-lang#104675 (Unsupported query error now specifies if its unsupported for local or external crate) - rust-lang#104839 (improve array_from_fn documenation) - rust-lang#104880 ([llvm-wrapper] adapt for LLVM API change) - rust-lang#104899 (rustdoc: remove no-op CSS `#help dt { display: block }`) - rust-lang#104906 (Remove AscribeUserTypeCx) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Fixes #101666.
I had to move
keys.rs
fromrustc_query_impl
torustc_middle
. I don't know if that is problematic. I couldn't think of any other way to get the needed information insiderustc_middle
.r? @jyn514