-
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 14 pull requests #35441
Closed
Closed
Rollup of 14 pull requests #35441
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates compiler error E0046 with new format Addresses rust-lang#35209 as part of rust-lang#35233. r? @jonathandturner I've repeated the following in my code. If this is something not desirable then let me know if there's any process to make this any cleaner. Thank you. ```rust missing_items.iter() .map(|name| name.to_string()) .collect::<Vec<_>>().join("`, `")) ```
Updates compiler error E0040 with new format Addresses rust-lang#35208 as part of rust-lang#35233. r? @GuillaumeGomez
Updated error message E0252 Fixes rust-lang#35306 as part of rust-lang#35233. r? @GuillaumeGomez
Updated error message E0282 Fixes rust-lang#35312 as part of rust-lang#35233. r? @GuillaumeGomez
Update error format rust-lang#35304 Fixes rust-lang#35304 as part of rust-lang#35233. r? @jonathandturner
…Gomez Update E0206 message to new format Part of rust-lang#35233. Fixes rust-lang#35301. r? @GuillaumeGomez
…andturner Update compiler error 0027 to use new error format. Part of rust-lang#35233, Addresses rust-lang#35200 r? @jonathandturner
…andturner Update E0223 to the new format Part of rust-lang#35233. Fixes rust-lang#35387. r? @jonathandturner
…andturner Update compiler error 0029 to use new error format. Part of rust-lang#35233, Addresses rust-lang#35201 r? @jonathandturner
E0131 updated to new format Changes ``` error[E0131]: main function is not allowed to have type parameters --> src/test/compile-fail/E0131.rs:11:1 | 11 | fn main<T>() { //~ ERROR E0131 | ^ ``` to ``` error[E0131]: main function is not allowed to have type parameters --> src/test/compile-fail/E0131.rs:11:1 | 11 | fn main<T>() { //~ ERROR E0131 | ^^^ main cannot have type parameters ``` Fixes rust-lang#35257. Part of rust-lang#35233. r? @jonathandturner
…t, r=jonathandturner Updated E0225 to new format. Part of rust-lang#35233. Fixes rust-lang#35388. r? @jonathandturner
…l422 Indicate tracking issue for `exact_size_is_empty` unstability. rust-lang#35428
…=jonathandturner Fixing compiler error E0121 Fixes rust-lang#35254 and part of rust-lang#35233
Add doc example for `std::ffi::NulError::into_vec`. None
@bors r+ p=1 |
📌 Commit d9e6bbd has been approved by |
r? @nrc (rust_highfive has picked a reviewer for you, use r? to override) |
⌛ Testing commit d9e6bbd with merge 6a7b83b... |
💔 Test failed - auto-win-gnu-32-opt-rustbuild |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
exact_size_is_empty
unstability. #35429, Fixing compiler error E0121 #35434, Add doc example forstd::ffi::NulError::into_vec
. #35436