diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-12-15 08:36:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-15 08:36:19 +0100 |
| commit | d258e92900739e7798ed4fccfbbb8cb0fe519acd (patch) | |
| tree | 455360166467e151049f5a323a0a1520f383a10d /src/tools/clippy | |
| parent | 195e931b02b69bbce1bcf4632f4e2d5603ef006b (diff) | |
| parent | d95f749f14a84006273930e155a76259c22660c5 (diff) | |
| download | rust-d258e92900739e7798ed4fccfbbb8cb0fe519acd.tar.gz rust-d258e92900739e7798ed4fccfbbb8cb0fe519acd.zip | |
Rollup merge of #90521 - jhpratt:stabilize-destructuring_assignment, r=jackh726,pnkfelix
Stabilize `destructuring_assignment` Closes #71126 - [Stabilization report](https://github.com/rust-lang/rust/issues/71126#issuecomment-941148058) - [Completed FCP](https://github.com/rust-lang/rust/issues/71126#issuecomment-954914819) `@rustbot` label +F-destructuring-assignment +T-lang Also needs +relnotes but I don't have permission to add that tag.
Diffstat (limited to 'src/tools/clippy')
| -rw-r--r-- | src/tools/clippy/tests/ui/crashes/ice-6250.stderr | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr index 0d7713aa9a2..7ffbd7a64b3 100644 --- a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr +++ b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr @@ -1,14 +1,3 @@ -error[E0658]: destructuring assignments are unstable - --> $DIR/ice-6250.rs:12:25 - | -LL | Some(reference) = cache.data.get(key) { - | --------------- ^ - | | - | cannot assign to this expression - | - = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information - = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable - error[E0601]: `main` function not found in crate `ice_6250` --> $DIR/ice-6250.rs:4:1 | @@ -41,7 +30,7 @@ error[E0308]: mismatched types LL | Some(reference) = cache.data.get(key) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bool`, found `()` -error: aborting due to 4 previous errors +error: aborting due to 3 previous errors -Some errors have detailed explanations: E0308, E0601, E0658. +Some errors have detailed explanations: E0308, E0601. For more information about an error, try `rustc --explain E0308`. |
