]> 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 59bce3a9a8f6d427d3e0f606f1b0ff3ce5ad4e5f..2c46b4eb593e3b665d82cb1d2d94bcc7125dd5fa 100644 (file)
@@ -1,10 +1,22 @@
 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
+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
+   |
+LL |         ref x @ _ => println!("vec: {:?}", x),
+   |         ^^^^^^^^^ help: try: `ref x`
+
+error: aborting due to 3 previous errors