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 #70335

Closed
wants to merge 39 commits into from
Closed

Commits on Mar 21, 2020

  1. Configuration menu
    Copy the full SHA
    2daaf2b View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2020

  1. convert a couple more errors

    mark-i-m committed Mar 22, 2020
    Configuration menu
    Copy the full SHA
    1661a0a View commit details
    Browse the repository at this point in the history
  2. use static strs

    mark-i-m committed Mar 22, 2020
    Configuration menu
    Copy the full SHA
    cdb2c3c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1e5d81d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    82f4a1a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    12607ef View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f767f54 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a8b0e40 View commit details
    Browse the repository at this point in the history
  8. Update tests

    GuillaumeGomez committed Mar 22, 2020
    Configuration menu
    Copy the full SHA
    ffe1289 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9664002 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    be97eb4 View commit details
    Browse the repository at this point in the history
  11. the crate and tests

    mark-i-m committed Mar 22, 2020
    Configuration menu
    Copy the full SHA
    d40dff9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cda81da View commit details
    Browse the repository at this point in the history
  13. fix one more test

    mark-i-m committed Mar 22, 2020
    Configuration menu
    Copy the full SHA
    5e8b795 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2020

  1. Configuration menu
    Copy the full SHA
    410385d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e619b85 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    19e6935 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    799b15e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fa5a15c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3f89c38 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    770be24 View commit details
    Browse the repository at this point in the history
  8. Remove ReClosureBound

    matthewjasper committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    c3b9881 View commit details
    Browse the repository at this point in the history
  9. Address review comments

    oli-obk committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    9bcd9fe View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c7c2fa1 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9ebc72f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    124ab20 View commit details
    Browse the repository at this point in the history
  13. Fix rebase fallout

    jonas-schievink committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    1df7641 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    e75158d View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    5aa15bf View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    4f513b5 View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#66938 - GuillaumeGomez:lint-for-no-crate-le…

    …vel-doc, r=Dylan-DPC
    
    Add lint when no doc is present at the crate-level
    
    Follow-up of rust-lang#66267.
    
    r? @kinnison
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    ccedc15 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#69740 - mark-i-m:describe-it-3, r=eddyb

    Replace some desc logic in librustc_lint with article_and_desc
    
    r? @eddyb @Centril @matthewjasper
    
    Followup to rust-lang#69674
    
    Blocked on rust-lang#69498
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    093602e View commit details
    Browse the repository at this point in the history
  19. Rollup merge of rust-lang#69981 - oli-obk:const_blocks, r=eddyb

    Evaluate repeat expression lengths as late as possible
    
    Fixes rust-lang#68567
    
    r? @varkor
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    32b6b1e View commit details
    Browse the repository at this point in the history
  20. Rollup merge of rust-lang#70015 - jonas-schievink:gen-needs-drop, r=m…

    …atthewjasper
    
    Make `needs_drop` less pessimistic on generators
    
    Generators only have non-trivial drop logic when they may store (in upvars or across yields) a type that does.
    
    This prevents generation of some unnecessary MIR in simple generators. There might be some impact on compile times, but this is probably limited in real-world applications.
    
    ~~This builds off of rust-lang#69814 since that contains some fixes that are made relevant by *this* PR (see rust-lang#69814 (comment) (this has been merged)
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    c8fb14e View commit details
    Browse the repository at this point in the history
  21. Rollup merge of rust-lang#70264 - tirr-c:issue-69789-mut-suggestion, …

    …r=estebank
    
    Fix invalid suggestion on `&mut` iterators yielding `&` references
    
    Fixes rust-lang#69789.
    
    rustc suggested an invalid code when `&` reference from `&mut` iterator is mutated. The compiler knew we're mutating a value behind `&` reference, but as the assignment RHS is from desugaring, it could only see the iterator expression from source and inserted `mut` there.
    
    r? @estebank
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    a897944 View commit details
    Browse the repository at this point in the history
  22. Rollup merge of rust-lang#70267 - RalfJung:const-prop-unsup, r=oli-ob…

    …k,wesleywiser
    
    get rid of ConstPropUnsupported; use ZST marker structs instead
    
    This gets rid of yet another machine-specific error variant.
    
    r? @oli-obk
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    c213d76 View commit details
    Browse the repository at this point in the history
  23. Rollup merge of rust-lang#70277 - matthewjasper:remove-closurebound, …

    …r=nikomatsakis
    
    Remove `ReClosureBound`
    
    We now substitute external names for regions in the query response.
    
    r? @nikomatsakis
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    4c53bfe View commit details
    Browse the repository at this point in the history
  24. Rollup merge of rust-lang#70294 - estebank:bad-placeholder-in-where, …

    …r=Centril
    
    Account for bad placeholder types in where clauses
    
    Fix rust-lang#70291. Follow up to rust-lang#69148.
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    de1b094 View commit details
    Browse the repository at this point in the history
  25. Rollup merge of rust-lang#70309 - GuillaumeGomez:cleanup-e0452, r=Dyl…

    …an-DPC
    
    Clean up E0452 explanation
    
    r? @Dylan-DPC
    Centril authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    c98c56e View commit details
    Browse the repository at this point in the history