]> 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 59bce3a9a8f6d427d3e0f606f1b0ff3ce5ad4e5f..784a3feaace6c64f7558147761e9e7454f5b37a8 100644 (file)
@@ -1,10 +1,10 @@
 error: the `y @ _` pattern can be written as just `y`
-  --> $DIR/patterns.rs:10:9
+  --> $DIR/patterns.rs:11:9
    |
-10 |         y @ _   => (),
-   |         ^^^^^
+LL |         y @ _ => (),
+   |         ^^^^^ help: try: `y`
    |
-   = note: `-D redundant-pattern` implied by `-D warnings`
+   = note: `-D clippy::redundant-pattern` implied by `-D warnings`
 
 error: aborting due to previous error