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 3 pull requests #124537

Merged
merged 7 commits into from
Apr 30, 2024
Merged

Rollup of 3 pull requests #124537

merged 7 commits into from
Apr 30, 2024

Commits on Apr 19, 2024

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

Commits on Apr 28, 2024

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

Commits on Apr 29, 2024

  1. Change wording

    est31 committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    c6e946d View commit details
    Browse the repository at this point in the history
  2. Fix Fuchsia build broken by rust-lang#124210

    Fuchsia doesn't support dirfd although we have a symbol stubbed for it.
    David Koloski committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    982a58e View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#124185 - beepster4096:move_data_base_local_…

    …infallible, r=pnkfelix
    
    Remove optionality from MoveData::base_local
    
    This is an artifact from when Places could be based on statics and not just locals. Now, all move paths either are locals or have parents, so this doesn't need to return Option anymore.
    matthiaskrgr committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    6ce9708 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#124488 - est31:arbitrary_expressions_error,…

    … r=pnkfelix
    
    Add a note to the ArbitraryExpressionInPattern error
    
    The current "arbitrary expressions aren't allowed in patterns" error is confusing, as it fires for code where it *looks* like a pattern but the compiler still treats it as an expression. That this is due to the `:expr` fragment specifier forcing the expression-ness property on the code.
    
    In the test suite, the "arbitrary expressions aren't allowed in patterns" error can only be found in combination with macro_rules macros that force expression-ness of their content, namely via `:expr` metavariables. I also can't come up with cases where there would be an expression instead of a pattern, so I think it's always coming from an `:expr`.
    
    In order to make the error less confusing, this adds a note explaining the weird `:expr` fragment behaviour.
    
    Fixes rust-lang#99380
    matthiaskrgr committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    42ab090 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#124530 - djkoloski:fuchsia_dirfd, r=tmandry

    Fix Fuchsia build broken by rust-lang#124210
    
    Fuchsia doesn't support dirfd although we have a symbol stubbed for it.
    matthiaskrgr committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    d94eaba View commit details
    Browse the repository at this point in the history