From f7a376e4fce60826582efa91c3cfdce80158399f Mon Sep 17 00:00:00 2001 From: tamaron Date: Sun, 21 Aug 2022 17:26:39 +0900 Subject: [PATCH] Update needless_match.stderr --- tests/ui/needless_match.stderr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ui/needless_match.stderr b/tests/ui/needless_match.stderr index a173bbe4d77f..28e78441c252 100644 --- a/tests/ui/needless_match.stderr +++ b/tests/ui/needless_match.stderr @@ -110,7 +110,7 @@ LL | | }; | |_________^ help: replace it with: `ce` error: this match expression is unnecessary - --> $DIR/needless_match.rs:252:17 + --> $DIR/needless_match.rs:253:17 | LL | let _ = match e { | _________________^ @@ -120,7 +120,7 @@ LL | | }; | |_________^ help: replace it with: `e` error: this match expression is unnecessary - --> $DIR/needless_match.rs:258:17 + --> $DIR/needless_match.rs:259:17 | LL | let _ = match e { | _________________^