rust/src/test/ui/issue-31221.stderr

35 lines
844 B
Plaintext
Raw Normal View History

error: unreachable pattern
--> $DIR/issue-31221.rs:28:9
|
27 | Var3 => (),
| ---- this pattern matches any value
28 | Var2 => (),
| ^^^^ this is an unreachable pattern
|
note: lint level defined here
--> $DIR/issue-31221.rs:14:9
|
14 | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
--> $DIR/issue-31221.rs:34:9
|
33 | &Var3 => (),
| ----- this pattern matches any value
34 | &Var2 => (),
| ^^^^^ this is an unreachable pattern
|
error: unreachable pattern
--> $DIR/issue-31221.rs:41:9
|
40 | (c, d) => (),
| ------ this pattern matches any value
41 | anything => ()
| ^^^^^^^^ this is an unreachable pattern
|
error: aborting due to 3 previous errors