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

Merged
merged 22 commits into from
Jan 28, 2023
Merged

Rollup of 9 pull requests #107408

merged 22 commits into from
Jan 28, 2023

Commits on Jan 25, 2023

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

Commits on Jan 26, 2023

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

Commits on Jan 27, 2023

  1. Configuration menu
    Copy the full SHA
    cd23323 View commit details
    Browse the repository at this point in the history
  2. Add regression test for rust-lang#60755

    Signed-off-by: Yuki Okushi <jtitor@2k36.org>
    JohnTitor committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    dbe911f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ed707a1 View commit details
    Browse the repository at this point in the history
  4. Fix some Fluent typos

    clubby789 committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    0ae0d87 View commit details
    Browse the repository at this point in the history
  5. Remove BOOL_TY_FOR_UNIT_TESTING

    It is not used anymore for unit testing.
    Noratrieb committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    454c473 View commit details
    Browse the repository at this point in the history
  6. yeet

    BoxyUwU committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    29901e0 View commit details
    Browse the repository at this point in the history
  7. Remove unused import

    Noratrieb committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    5152e84 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0959149 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2023

  1. Remove ControlFlow::{BREAK, CONTINUE}

    Libs-API decided to remove these in rust-lang#102697.
    
    Follow-up to rust-lang#107023, which removed them from `compiler/`, but a couple new ones showed up since that was merged.
    scottmcm committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    868d099 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c4fa0d3 View commit details
    Browse the repository at this point in the history
  3. Replace libc::{type} with crate::ffi::{type}

    Replace libc::{type} imports with crate::ffi::{type} outside of
    `std::sys` and `std::os`.
    
    Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
    Ayush1325 committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    c50d3e2 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#104012 - chenyukang:yukang/fix-103882-deli-…

    …indentation, r=petrochenkov
    
    Improve unexpected close and mismatch delimiter hint in TokenTreesReader
    
    Fixes rust-lang#103882
    Fixes rust-lang#68987
    Fixes rust-lang#69259
    
    The inner indentation mismatching will be covered by outer block, the new added function `report_error_prone_delim_block` will find out the error prone candidates for reporting.
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    e3048c7 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#104252 - faern:stabilize-const_socketaddr, …

    …r=JohnTitor
    
    Stabilize the const_socketaddr feature
    
    Stabilizes `#![feature(const_socketaddr)]`. Tracking issue: rust-lang#82485
    Closes rust-lang#82485
    
    This has been unstably const for over a year now. And the code change simplifying the constness of the `new` constructors has been in stable Rust since 1.64 (a bit over a full release cycle). I'm not aware of any blockers to this stabilization.
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    36ef4f1 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#105524 - Ayush1325:libc-free, r=ChrisDenton

    Replace libc::{type} with crate::ffi::{type}
    
    Replace libc::{type} imports with crate::ffi::{type} outside of `std::sys` and `std::os`.
    
    Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    45430a5 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#107096 - clubby789:fluent-bad-messageref, r…

    …=compiler-errors
    
    Detect references to non-existant messages in Fluent resources
    
    Should help with cases like rust-lang#107091, where `{variable}` (a message reference) is accidentally typed, rather than `{$variable}` (a variable reference)
    
    Fixes rust-lang#107370
    
    ```@rustbot``` label +A-translation
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    53ccee0 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#107355 - JohnTitor:issue-60755, r=compiler-…

    …errors
    
    Add regression test for rust-lang#60755
    
    Closes rust-lang#60755
    r? compiler-errors
    Signed-off-by: Yuki Okushi <jtitor@2k36.org>
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    b64a75f View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#107384 - Nilstrieb:bool-for-deletion, r=oli…

    …-obk
    
    Remove `BOOL_TY_FOR_UNIT_TESTING`
    
    It is not used anymore for unit testing.
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    e0c8359 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#107385 - BoxyUwU:ConstInferUnifier_is_folde…

    …r, r=compiler-errors
    
    Use `FallibleTypeFolder` for `ConstInferUnifier` not `TypeRelation`
    
    I am not sure why this was using a `TypeRelation`, maybe it predates the ability to have fallible type folders
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    18c9c64 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#107391 - notriddle:notriddle/copy-path-butt…

    …on, r=GuillaumeGomez
    
    rustdoc: remove inline javascript from copy-path button
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    6bd09e0 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#107398 - scottmcm:its-their-funeral, r=dtolnay

    Remove `ControlFlow::{BREAK, CONTINUE}`
    
    Libs-API decided to remove these in rust-lang#102697.
    
    Follow-up to rust-lang#107023, which removed them from `compiler/`, but a couple new ones showed up since that was merged.
    
    r? libs
    matthiaskrgr committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    c95707a View commit details
    Browse the repository at this point in the history