]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/patterns.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / patterns.stderr
index b55f9e477d41b324114a3b6dd3a852b766f5963e..784a3feaace6c64f7558147761e9e7454f5b37a8 100644 (file)
@@ -1,15 +1,10 @@
 error: the `y @ _` pattern can be written as just `y`
-  --> $DIR/patterns.rs:10:9
+  --> $DIR/patterns.rs:11:9
    |
-10 |         y @ _   => (),  //~ERROR the `y @ _` pattern can be written as just `y`
-   |         ^^^^^
+LL |         y @ _ => (),
+   |         ^^^^^ help: try: `y`
    |
-   = note: #[deny(redundant_pattern)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/patterns.rs:4:9
-   |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+   = note: `-D clippy::redundant-pattern` implied by `-D warnings`
 
 error: aborting due to previous error