]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/patterns.stderr
Auto merge of #9684 - kraktus:ref_option_ref, r=xFrednet
[rust.git] / tests / ui / patterns.stderr
index b55f9e477d41b324114a3b6dd3a852b766f5963e..2c46b4eb593e3b665d82cb1d2d94bcc7125dd5fa 100644 (file)
@@ -1,15 +1,22 @@
 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
+   = note: `-D clippy::redundant-pattern` implied by `-D warnings`
+
+error: the `x @ _` pattern can be written as just `x`
+  --> $DIR/patterns.rs:26:9
+   |
+LL |         ref mut x @ _ => {
+   |         ^^^^^^^^^^^^^ help: try: `ref mut x`
+
+error: the `x @ _` pattern can be written as just `x`
+  --> $DIR/patterns.rs:34:9
    |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+LL |         ref x @ _ => println!("vec: {:?}", x),
+   |         ^^^^^^^^^ help: try: `ref x`
 
-error: aborting due to previous error
+error: aborting due to 3 previous errors