-
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 #78371
Rollup of 7 pull requests #78371
Commits on Oct 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 57d01a9 - Browse repository at this point
Copy the full SHA 57d01a9View commit details
Commits on Oct 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d0d0e78 - Browse repository at this point
Copy the full SHA d0d0e78View commit details -
Configuration menu - View commit details
-
Copy full SHA for db15596 - Browse repository at this point
Copy the full SHA db15596View commit details -
Configuration menu - View commit details
-
Copy full SHA for 86df903 - Browse repository at this point
Copy the full SHA 86df903View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4ee3ca - Browse repository at this point
Copy the full SHA a4ee3caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 671d7c4 - Browse repository at this point
Copy the full SHA 671d7c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62ba365 - Browse repository at this point
Copy the full SHA 62ba365View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a0227b - Browse repository at this point
Copy the full SHA 3a0227bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1829b4a - Browse repository at this point
Copy the full SHA 1829b4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c548511 - Browse repository at this point
Copy the full SHA c548511View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5d7443 - Browse repository at this point
Copy the full SHA f5d7443View commit details
Commits on Oct 24, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1333206 - Browse repository at this point
Copy the full SHA 1333206View commit details -
Miri engine validity check: simplify code with 'matches!'
and improve a comment a bit
Configuration menu - View commit details
-
Copy full SHA for 2585124 - Browse repository at this point
Copy the full SHA 2585124View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8ec83f - Browse repository at this point
Copy the full SHA d8ec83fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 778ddff - Browse repository at this point
Copy the full SHA 778ddffView commit details -
Co-authored-by: BlackHoleFox <blackholefoxdev@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5d62492 - Browse repository at this point
Copy the full SHA 5d62492View commit details -
Configuration menu - View commit details
-
Copy full SHA for 849c929 - Browse repository at this point
Copy the full SHA 849c929View commit details
Commits on Oct 25, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7b4c397 - Browse repository at this point
Copy the full SHA 7b4c397View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ec396e - Browse repository at this point
Copy the full SHA 4ec396eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e218380 - Browse repository at this point
Copy the full SHA e218380View commit details -
Configuration menu - View commit details
-
Copy full SHA for 341170d - Browse repository at this point
Copy the full SHA 341170dView commit details -
interning cleanup: we no longer need to distinguish Const and ConstIn…
…ner; we no longer need the ignore_interior_mut_in_const hack
Configuration menu - View commit details
-
Copy full SHA for 7c7b90d - Browse repository at this point
Copy the full SHA 7c7b90dView commit details -
Configuration menu - View commit details
-
Copy full SHA for db01d97 - Browse repository at this point
Copy the full SHA db01d97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bd5cc9 - Browse repository at this point
Copy the full SHA 3bd5cc9View commit details -
Rollup merge of rust-lang#78214 - estebank:match-semicolon, r=oli-obk
Tweak match arm semicolon removal suggestion to account for futures * Tweak and extend "use `.await`" suggestions * Suggest removal of semicolon on prior match arm * Account for `impl Future` when suggesting semicolon removal * Silence some errors when encountering `await foo()?` as can't be certain what the intent was *Thanks to https://twitter.com/a_hoverbear/status/1318960787105353728 for pointing this out!*
Configuration menu - View commit details
-
Copy full SHA for b9e7982 - Browse repository at this point
Copy the full SHA b9e7982View commit details -
Rollup merge of rust-lang#78227 - SergioBenitez:test-stdout-threading…
…, r=m-ou-se Capture output from threads spawned in tests This is revival of rust-lang#75172. Original text: > Fixes rust-lang#42474. > > r? `@dtolnay` since you expressed interest in this, but feel free to redirect if you aren't the right person anymore. --- Closes rust-lang#75172.
Configuration menu - View commit details
-
Copy full SHA for 117ce17 - Browse repository at this point
Copy the full SHA 117ce17View commit details -
Rollup merge of rust-lang#78247 - simonvandel:fix-78192, r=oli-obk
Fix rust-lang#78192 Check which places are marked dead. Fixes rust-lang#78192
Configuration menu - View commit details
-
Copy full SHA for 9fe1de1 - Browse repository at this point
Copy the full SHA 9fe1de1View commit details -
Rollup merge of rust-lang#78268 - JohnTitor:issue-78262, r=estebank
Do not try to report on closures to avoid ICE Fixes rust-lang#78262
Configuration menu - View commit details
-
Copy full SHA for 93b4abf - Browse repository at this point
Copy the full SHA 93b4abfView commit details -
Rollup merge of rust-lang#78324 - RalfJung:uninhabited-statics, r=oli…
…-obk ensure that statics are inhabited Fixes rust-lang#74840 r? @oli-obk
Configuration menu - View commit details
-
Copy full SHA for da10bd8 - Browse repository at this point
Copy the full SHA da10bd8View commit details -
Rollup merge of rust-lang#78348 - jyn514:pub-crate, r=GuillaumeGomez
Make some functions private that don't have to be public r? @GuillaumeGomez
Configuration menu - View commit details
-
Copy full SHA for 9c08ed0 - Browse repository at this point
Copy the full SHA 9c08ed0View commit details -
Rollup merge of rust-lang#78351 - RalfJung:validity-unsafe-cell, r=ol…
…i-obk Move "mutable thing in const" check from interning to validity This moves the check for mutable things (such as `UnsafeCell` or `&mut`) in a`const` from interning to validity. That means we can give more targeted error messages (pointing out *where* the problem lies), and we can simplify interning a bit. Also fix the interning mode used for promoteds in statics. r? @oli-obk
Configuration menu - View commit details
-
Copy full SHA for 04fe7fa - Browse repository at this point
Copy the full SHA 04fe7faView commit details