-
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
Rollup of 7 pull requests #99163
Rollup of 7 pull requests #99163
Commits on Jul 9, 2022
-
Fix duplicated type annotation suggestion
Before, there was more or less duplicated suggestions to add type hints. Fix by clearing more generic suggestions when a more specific suggestion is possible. This fixes rust-lang#93506 .
Configuration menu - View commit details
-
Copy full SHA for 34e9e6d - Browse repository at this point
Copy the full SHA 34e9e6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f0a99f9 - Browse repository at this point
Copy the full SHA f0a99f9View commit details
Commits on Jul 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fc26ca1 - Browse repository at this point
Copy the full SHA fc26ca1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fb6784 - Browse repository at this point
Copy the full SHA 5fb6784View commit details
Commits on Jul 11, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 6c44357 - Browse repository at this point
Copy the full SHA 6c44357View commit details -
Don't rerun the build script for the compiler each time on linux
In practice, this doesn't matter very much because the script takes ~no time to run. But this makes `CARGO_LOG=info` easier to read, and theoretically saves a few milliseconds.
Configuration menu - View commit details
-
Copy full SHA for 033a025 - Browse repository at this point
Copy the full SHA 033a025View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c39762 - Browse repository at this point
Copy the full SHA 0c39762View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88f2140 - Browse repository at this point
Copy the full SHA 88f2140View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3d84b2 - Browse repository at this point
Copy the full SHA e3d84b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 992346d - Browse repository at this point
Copy the full SHA 992346dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b65d3a6 - Browse repository at this point
Copy the full SHA b65d3a6View commit details -
Rollup merge of rust-lang#97210 - Milo123459:clippy-args, r=jyn514
Support `-A`, `-W`, `-D` and `-F` when running `./x.py clippy` Resolves rust-lang#97059 This PR adds support for `-A`, `-W`, `-D` and `-F` when running `./x.py clippy`.
Configuration menu - View commit details
-
Copy full SHA for dc2f129 - Browse repository at this point
Copy the full SHA dc2f129View commit details -
Rollup merge of rust-lang#99020 - fee1-dead-contrib:repr_transparent_…
…non_exhaustive, r=oli-obk check non_exhaustive attr and private fields for transparent types Fixes rust-lang#78586.
Configuration menu - View commit details
-
Copy full SHA for 29b7427 - Browse repository at this point
Copy the full SHA 29b7427View commit details -
Rollup merge of rust-lang#99055 - GuillaumeGomez:rustdoc-help-options…
…, r=jyn514 Fix rustdoc help options Fixes rust-lang#98976. Since you're the one who found out about the problem and also provided the solution (thanks for both!): r? ``@jyn514``
Configuration menu - View commit details
-
Copy full SHA for da85ea2 - Browse repository at this point
Copy the full SHA da85ea2View commit details -
Rollup merge of rust-lang#99075 - danobi:dup_type_hint_sugg, r=petroc…
…henkov Fix duplicated type annotation suggestion Before, there was more or less duplicated suggestions to add type hints. Fix by clearing more generic suggestions when a more specific suggestion is possible. This fixes rust-lang#93506 .
Configuration menu - View commit details
-
Copy full SHA for cc4e21d - Browse repository at this point
Copy the full SHA cc4e21dView commit details -
Rollup merge of rust-lang#99142 - notriddle:notriddle/doctest-multili…
…ne-crate-attributes, r=GuillaumeGomez fix(doctest): treat fatal parse errors as incomplete attributes Fixes rust-lang#99089
Configuration menu - View commit details
-
Copy full SHA for 3935853 - Browse repository at this point
Copy the full SHA 3935853View commit details -
Rollup merge of rust-lang#99145 - jyn514:dont-rerun-build-script, r=w…
…esleywiser Don't rerun the build script for the compiler each time on non-windows platforms In practice, this doesn't matter very much because the script takes ~no time to run. But this makes `CARGO_LOG=info` easier to read, and theoretically saves a few milliseconds.
Configuration menu - View commit details
-
Copy full SHA for 8e51b53 - Browse repository at this point
Copy the full SHA 8e51b53View commit details -
Rollup merge of rust-lang#99146 - compiler-errors:issue-61525, r=lcnr
Do not error during method probe on `Sized` predicates for types that aren't the method receiver Fixes rust-lang#61525 This is safe even though we're skipping an error because we end up confirming the method, which means we're still checking the `Sized` predicate in the end. It just means that we don't emit an erroneous message as below: ``` error: the `query` method cannot be invoked on a trait object --> src/lib.rs:14:11 | 14 | 1.query::<dyn ToString>("") | ^^^^^ | = note: another candidate was found in the following trait, perhaps add a `use` for it: `use crate::Example;` ``` Also fixes erroneously suggesting the same trait over again, as seen in the `issue-35976.rs` UI test.
Configuration menu - View commit details
-
Copy full SHA for a75ec28 - Browse repository at this point
Copy the full SHA a75ec28View commit details