-
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 9 pull requests #68330
Rollup of 9 pull requests #68330
Commits on Jan 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 12f029b - Browse repository at this point
Copy the full SHA 12f029bView commit details -
Configuration menu - View commit details
-
Copy full SHA for fd4a88f - Browse repository at this point
Copy the full SHA fd4a88fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 81a5b94 - Browse repository at this point
Copy the full SHA 81a5b94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e79146 - Browse repository at this point
Copy the full SHA 6e79146View commit details -
Configuration menu - View commit details
-
Copy full SHA for e6ad49a - Browse repository at this point
Copy the full SHA e6ad49aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d755238 - Browse repository at this point
Copy the full SHA d755238View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a9b951 - Browse repository at this point
Copy the full SHA 8a9b951View commit details
Commits on Jan 16, 2020
-
* Move tests from src/test/run-make-fulldeps to src/test/ui. * Fix memory sanitizer test to detect the intended issue rather than an unrelated one caused by the use of an uninstrumented std.
Configuration menu - View commit details
-
Copy full SHA for ea64a33 - Browse repository at this point
Copy the full SHA ea64a33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25a8f94 - Browse repository at this point
Copy the full SHA 25a8f94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3094c37 - Browse repository at this point
Copy the full SHA 3094c37View commit details
Commits on Jan 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 10a9ea4 - Browse repository at this point
Copy the full SHA 10a9ea4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03240e1 - Browse repository at this point
Copy the full SHA 03240e1View commit details -
Stop treating
FalseEdges
andFalseUnwind
as having semantic value…… for const eval
Configuration menu - View commit details
-
Copy full SHA for cdc828e - Browse repository at this point
Copy the full SHA cdc828eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a91f77c - Browse repository at this point
Copy the full SHA a91f77cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c6c2f1 - Browse repository at this point
Copy the full SHA 9c6c2f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 482dc77 - Browse repository at this point
Copy the full SHA 482dc77View commit details -
Configuration menu - View commit details
-
Copy full SHA for e8a4b93 - Browse repository at this point
Copy the full SHA e8a4b93View commit details -
Configuration menu - View commit details
-
Copy full SHA for d461e6d - Browse repository at this point
Copy the full SHA d461e6dView commit details
Commits on Jan 18, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4743995 - Browse repository at this point
Copy the full SHA 4743995View commit details -
Rollup merge of rust-lang#66660 - jumbatm:dont_warn_about_snake_case_…
…in_patterns, r=centril Don't warn about snake case for field puns. Closes rust-lang#66362.
Configuration menu - View commit details
-
Copy full SHA for c854aec - Browse repository at this point
Copy the full SHA c854aecView commit details -
Rollup merge of rust-lang#68093 - GuillaumeGomez:fix-deref-impl-typed…
…ef, r=oli-obk Fix deref impl typedef Fixes rust-lang#35295. r? @kinnison
Configuration menu - View commit details
-
Copy full SHA for bafe089 - Browse repository at this point
Copy the full SHA bafe089View commit details -
Rollup merge of rust-lang#68204 - ecstatic-morse:item-kind-impl, r=ol…
…i-obk Use named fields for `{ast,hir}::ItemKind::Impl` Currently, the widely used `ItemKind::Impl` variant is a tuple with seven fields. I want to add an eighth in rust-lang#68140, which means I have to update most matches on this variant anyways. Giving a name to each field improves readability and makes future changes of this nature much simpler. This change will cause several tools to break. I will fix them once this is merged.
Configuration menu - View commit details
-
Copy full SHA for fca3264 - Browse repository at this point
Copy the full SHA fca3264View commit details -
Rollup merge of rust-lang#68256 - estebank:bad-sugg-span, r=petrochenkov
Do not ICE on malformed suggestion spans Under the assumption that suggestions are by their very nature always "best effort", it is ok if we don't display them instead of having an ICE. The underlying issue of the malformed span being _created_ is left unaddressed. Fix rust-lang#67567. r? @petrochenkov
Configuration menu - View commit details
-
Copy full SHA for 7f6fdef - Browse repository at this point
Copy the full SHA 7f6fdefView commit details -
Rollup merge of rust-lang#68279 - GuillaumeGomez:clean-up-e0198, r=Dy…
…lan-DPC Clean up E0198 explanation r? @Dylan-DPC
Configuration menu - View commit details
-
Copy full SHA for 2a1ab29 - Browse repository at this point
Copy the full SHA 2a1ab29View commit details -
Rollup merge of rust-lang#68291 - tmiasko:sanitizer-tests, r=nikomats…
…akis Update sanitizer tests * Move tests from src/test/run-make-fulldeps to src/test/ui. * Fix memory sanitizer test to detect the intended issue rather than an unrelated one caused by the use of an uninstrumented std.
Configuration menu - View commit details
-
Copy full SHA for 87293cd - Browse repository at this point
Copy the full SHA 87293cdView commit details -
Rollup merge of rust-lang#68312 - varkor:issue-67753-regression, r=Ce…
…ntril Add regression test for integer literals in generic arguments in where clauses Closes rust-lang#67753.
Configuration menu - View commit details
-
Copy full SHA for 9d9c8c6 - Browse repository at this point
Copy the full SHA 9d9c8c6View commit details -
Rollup merge of rust-lang#68314 - oli-obk:true_unwind, r=eddyb
Stop treating `FalseEdges` and `FalseUnwind` as having semantic value for const eval This change does not expose loops or conditions to stable const fns because we check those at the HIR level and in the regular const validity checks. cc @ecstatic-morse r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for dd6a838 - Browse repository at this point
Copy the full SHA dd6a838View commit details -
Rollup merge of rust-lang#68317 - GuillaumeGomez:clean-up-e0199, r=Dy…
…lan-DPC Clean up E0199 explanation r? @Dylan-DPC
Configuration menu - View commit details
-
Copy full SHA for 14d779c - Browse repository at this point
Copy the full SHA 14d779cView commit details