You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#133329 - jhpratt:rollup-8ndpkzx, r=jhpratt
Rollup of 13 pull requests
Successful merges:
- rust-lang#130867 (distinguish overflow and unimplemented in Step::steps_between)
- rust-lang#131859 (Update TRPL to add new Chapter 17: Async and Await)
- rust-lang#132090 (Stop being so bail-y in candidate assembly)
- rust-lang#132658 (Detect const in pattern with typo)
- rust-lang#133041 (Print name of env var in `--print=deployment-target`)
- rust-lang#133102 (aarch64 softfloat target: always pass floats in int registers)
- rust-lang#133159 (Don't allow `-Zunstable-options` to take a value )
- rust-lang#133217 ([AIX] Add option -X32_64 to the "strip" command)
- rust-lang#133237 (Minimally constify `Add`)
- rust-lang#133238 (re-export `is_loongarch_feature_detected`)
- rust-lang#133286 (Re-delay a resolve `bug` related to `Self`-ctor in patterns)
- rust-lang#133301 (Add code example for `wrapping_neg` method for signed integers)
- rust-lang#133313 (Use arc4random of libc for RTEMS target)
Failed merges:
- rust-lang#133215 (Fix missing submodule in `./x vendor`)
r? `@ghost`
`@rustbot` modify labels: rollup
.unreachable_covered_by_catchall = matches any value
339
339
.unreachable_covered_by_one = matches all the relevant values
340
340
.unreachable_covered_by_many = multiple earlier patterns match some of the same values
341
+
.unreachable_pattern_const_reexport_accessible = there is a constant of the same name imported in another scope, which could have been used to pattern match against its value instead of introducing a new catch-all binding, but it needs to be imported in the pattern's scope
342
+
.unreachable_pattern_wanted_const = you might have meant to pattern match against the value of {$is_typo->
343
+
[true] similarly named constant
344
+
*[false] constant
345
+
} `{$const_name}` instead of introducing a new catch-all binding
346
+
.unreachable_pattern_const_inaccessible = there is a constant of the same name, which could have been used to pattern match against its value instead of introducing a new catch-all binding, but it is not accessible from this scope
347
+
.unreachable_pattern_let_binding = there is a binding of the same name; if you meant to pattern match against the value of that binding, that is a feature of constants that is not available for `let` bindings
341
348
.suggestion = remove the match arm
342
349
343
350
mir_build_unsafe_fn_safe_body = an unsafe function restricts its caller, but its body is safe by default
0 commit comments