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 11 pull requests #62840

Closed
wants to merge 28 commits into from
Closed

Commits on Jul 16, 2019

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

Commits on Jul 18, 2019

  1. Suggest trait bound on type parameter when it is unconstrained

    Given
    
    ```
    mented on Jan 26, 2015 •
     trait Foo { fn method(&self) {} }
    
    fn call_method<T>(x: &T) {
        x.method()
    }
    ```
    
    suggest constraining `T` with `Foo`.
    estebank committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    f22bc2d View commit details
    Browse the repository at this point in the history
  2. Fix typo in src/libstd/net/udp.rs doc comment

    Affect is usually used as a verb, effect as a verb.
    Indy2222 committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    48b6069 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    886fb21 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2019

  1. Configuration menu
    Copy the full SHA
    33452b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13ed0cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7c1e405 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    469b7a9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c6735a6 View commit details
    Browse the repository at this point in the history
  6. Revert "Disable stack probing for gnux32."

    This reverts commit 42d652e.
    crlf0710 committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    10d4159 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f5b2859 View commit details
    Browse the repository at this point in the history
  8. review comments

    estebank committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    9dbe2e7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b361864 View commit details
    Browse the repository at this point in the history
  10. rustc: Compile the fmt_macros crate as an rlib

    I think this was left out by accident from the "convert everything to
    rlibs" commit, there's no need for this to be a dylib just as everything
    else doesn't need to be a dylib!
    alexcrichton committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    c1b4d62 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c6e027d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    19a848d View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2019

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

Commits on Jul 21, 2019

  1. Rollup merge of rust-lang#62709 - nhynes:test-maplike-fromiter, r=cuv…

    …iper
    
    Test that maplike FromIter satisfies uniqueness
    
    This PR adds a simple assertion to the `HashMap` and `HashSet` tests to ensure that uniqueness is satisfied when `FromIter`ing. This is useful for people who want to test their custom type against the Map/Set interfaces since they'll copy the tests wholesale but possibly miss this bug (where _they_ = _me_).
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    eb1f631 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#62746 - RalfJung:deprecated, r=KodrAus

     do not use assume_init in std::io
    
    Cc rust-lang#62397
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    9182b70 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#62772 - estebank:trait-bound, r=matthewjasper

    Suggest trait bound on type parameter when it is unconstrained
    
    Given
    
    ```
    trait Foo { fn method(&self) {} }
    
    fn call_method<T>(x: &T) {
        x.method()
    }
    ```
    
    suggest constraining `T` with `Foo`.
    
    Fix rust-lang#21673, fix rust-lang#41030.
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    785acaf View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#62787 - Indy2222:master, r=Mark-Simulacrum

    Fix typo in src/libstd/net/udp.rs doc comment
    
    Affect is usually used as a verb, effect as a verb.
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    c8c401a View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#62788 - fakenine:normalize_use_of_backticks…

    …_compiler_messages_p9, r=Centril
    
    normalize use of backticks in compiler messages for libcore/ptr
    
    rust-lang#60532
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    8d91abc View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#62791 - estebank:type-ascription, r=petroch…

    …enkov
    
    Handle more cases of typos misinterpreted as type ascription
    
    Fix rust-lang#60933, rust-lang#54516.
    
    CC rust-lang#47666, rust-lang#34255, rust-lang#48016.
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    38532ae View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#62804 - lundibundi:help-infer-const-static,…

    … r=eddyb
    
    rustc_typeck: improve diagnostics for _ const/static declarations
    
    This continues rust-lang#62694 and adds type suggestions to const/static declarations with `_` type.
    
    r? @eddyb
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    a82c60b View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#62808 - crlf0710:gnux32_stack_probe, r=nikic

    Revert "Disable stack probing for gnux32."
    
    This reverts commit 42d652e. (rust-lang#59686)
    
    Closes rust-lang#59674.
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    cc8ae62 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#62812 - fakenine:normalize_use_of_backticks…

    …_compiler_messages_p11, r=GuillaumeGomez
    
    normalize use of backticks in compiler messages for librustc_metadata
    
    rust-lang#60532
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    a343f7d View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#62813 - alexcrichton:less-dylib, r=Mark-Sim…

    …ulacrum
    
    rustc: Compile the `fmt_macros` crate as an rlib
    
    I think this was left out by accident from the "convert everything to
    rlibs" commit, there's no need for this to be a dylib just as everything
    else doesn't need to be a dylib!
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    b7d136f View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#62832 - fakenine:normalize_use_of_backticks…

    …_compiler_messages_p12, r=Centril
    
    normalize use of backticks in compiler messages for librustc_incremental
    
    rust-lang#60532
    Centril authored Jul 21, 2019
    Configuration menu
    Copy the full SHA
    6558b98 View commit details
    Browse the repository at this point in the history