summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/manual_let_else/manual_let_else.stderr
blob: 5c2c86c3731890a8c3a4f6de26ba8a717c231088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: this could be rewritten as `let...else`
  --> $DIR/manual_let_else.rs:9:5
   |
LL | /     let x = match Foo::A(1) {
LL | |
LL | |         Foo::A(x) => x,
LL | |         Foo::B => return,
LL | |     };
   | |______^ help: consider writing: `let Foo::A(x) = Foo::A(1) else { return };`
   |
   = note: `-D clippy::manual-let-else` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::manual_let_else)]`

error: aborting due to previous error