rust/tests/ui/pattern/usefulness/impl-trait.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
2.7 KiB
Plaintext
Raw Normal View History

2023-10-29 20:14:52 +00:00
error: unreachable pattern
--> $DIR/impl-trait.rs:17:13
2023-10-29 20:14:52 +00:00
|
LL | _ => {}
| ^
2023-10-29 20:14:52 +00:00
|
note: the lint level is defined here
--> $DIR/impl-trait.rs:5:9
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
--> $DIR/impl-trait.rs:31:13
|
LL | _ => {}
| ^
error: unreachable pattern
--> $DIR/impl-trait.rs:45:13
|
LL | Some(_) => {}
| ^^^^^^^
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:49:13
|
LL | _ => {}
| ^
error: unreachable pattern
--> $DIR/impl-trait.rs:59:13
|
LL | Some(_) => {}
| ^^^^^^^
2023-10-29 20:14:52 +00:00
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:63:13
2023-10-29 20:14:52 +00:00
|
LL | _ => {}
| ^
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:76:9
|
LL | _ => {}
| ^
2023-10-29 20:14:52 +00:00
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:86:9
2023-10-29 20:14:52 +00:00
|
LL | _ => {}
| - matches any value
LL | Some((a, b)) => {}
| ^^^^^^^^^^^^ unreachable pattern
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:94:13
|
LL | _ => {}
| ^
2023-10-29 20:14:52 +00:00
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:105:9
2023-10-29 20:14:52 +00:00
|
LL | Some((mut x, mut y)) => {
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
2023-11-16 07:53:21 +00:00
--> $DIR/impl-trait.rs:124:13
2023-10-29 20:14:52 +00:00
|
LL | _ => {}
| - matches any value
LL | Rec { n: 0, w: Some(Rec { n: 0, w: _ }) } => {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unreachable pattern
2023-11-16 07:53:21 +00:00
error: unreachable pattern
--> $DIR/impl-trait.rs:138:13
|
LL | _ => {}
| ^
error: unreachable pattern
--> $DIR/impl-trait.rs:151:13
|
LL | _ => {}
| ^
2023-10-29 20:14:52 +00:00
error[E0004]: non-exhaustive patterns: type `impl Copy` is non-empty
--> $DIR/impl-trait.rs:23:11
|
LL | match return_never_rpit(x) {}
| ^^^^^^^^^^^^^^^^^^^^
|
= note: the matched value is of type `impl Copy`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
LL ~ match return_never_rpit(x) {
LL + _ => todo!(),
LL + }
|
error[E0004]: non-exhaustive patterns: type `T` is non-empty
--> $DIR/impl-trait.rs:37:11
|
LL | match return_never_tait(x) {}
| ^^^^^^^^^^^^^^^^^^^^
|
= note: the matched value is of type `T`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
LL ~ match return_never_tait(x) {
LL + _ => todo!(),
LL + }
|
2023-11-16 07:53:21 +00:00
error: aborting due to 15 previous errors
2023-10-29 20:14:52 +00:00
For more information about this error, try `rustc --explain E0004`.