summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/patterns.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/patterns.stderr')
-rw-r--r--src/tools/clippy/tests/ui/patterns.stderr7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/clippy/tests/ui/patterns.stderr b/src/tools/clippy/tests/ui/patterns.stderr
index 276330d21..2f608bbc1 100644
--- a/src/tools/clippy/tests/ui/patterns.stderr
+++ b/src/tools/clippy/tests/ui/patterns.stderr
@@ -1,19 +1,20 @@
error: the `y @ _` pattern can be written as just `y`
- --> $DIR/patterns.rs:15:9
+ --> $DIR/patterns.rs:14:9
|
LL | y @ _ => (),
| ^^^^^ help: try: `y`
|
= note: `-D clippy::redundant-pattern` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::redundant_pattern)]`
error: the `x @ _` pattern can be written as just `x`
- --> $DIR/patterns.rs:30:9
+ --> $DIR/patterns.rs:29:9
|
LL | ref mut x @ _ => {
| ^^^^^^^^^^^^^ help: try: `ref mut x`
error: the `x @ _` pattern can be written as just `x`
- --> $DIR/patterns.rs:38:9
+ --> $DIR/patterns.rs:37:9
|
LL | ref x @ _ => println!("vec: {:?}", x),
| ^^^^^^^^^ help: try: `ref x`