Skip to content
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

Merged
merged 28 commits into from
Jan 18, 2020
Merged

Rollup of 9 pull requests #68330

merged 28 commits into from
Jan 18, 2020

Commits on Jan 15, 2020

  1. Configuration menu
    Copy the full SHA
    12f029b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fd4a88f View commit details
    Browse the repository at this point in the history
  3. formatting

    GuillaumeGomez committed Jan 15, 2020
    Configuration menu
    Copy the full SHA
    81a5b94 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e79146 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e6ad49a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d755238 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8a9b951 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2020

  1. 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.
    tmiasko committed Jan 16, 2020
    Configuration menu
    Copy the full SHA
    ea64a33 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    25a8f94 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3094c37 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2020

  1. Configuration menu
    Copy the full SHA
    10a9ea4 View commit details
    Browse the repository at this point in the history
  2. review comments

    estebank committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    03240e1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cdc828e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a91f77c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9c6c2f1 View commit details
    Browse the repository at this point in the history
  6. formatting

    GuillaumeGomez committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    482dc77 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e8a4b93 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d461e6d View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2020

  1. Configuration menu
    Copy the full SHA
    4743995 View commit details
    Browse the repository at this point in the history
  2. 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.
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    c854aec View commit details
    Browse the repository at this point in the history
  3. 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
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    bafe089 View commit details
    Browse the repository at this point in the history
  4. 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.
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    fca3264 View commit details
    Browse the repository at this point in the history
  5. 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
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    7f6fdef View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#68279 - GuillaumeGomez:clean-up-e0198, r=Dy…

    …lan-DPC
    
    Clean up E0198 explanation
    
    r? @Dylan-DPC
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    2a1ab29 View commit details
    Browse the repository at this point in the history
  7. 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.
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    87293cd View commit details
    Browse the repository at this point in the history
  8. 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.
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    9d9c8c6 View commit details
    Browse the repository at this point in the history
  9. 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
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    dd6a838 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#68317 - GuillaumeGomez:clean-up-e0199, r=Dy…

    …lan-DPC
    
    Clean up E0199 explanation
    
    r? @Dylan-DPC
    tmandry authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    14d779c View commit details
    Browse the repository at this point in the history