2020-08-27 12:27:14 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared type `E`
|
2019-11-15 07:45:30 +00:00
|
|
|
--> $DIR/pattern-error-continue.rs:33:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | E::V => {}
|
2020-08-27 12:27:14 +00:00
|
|
|
| ^ use of undeclared type `E`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
error[E0532]: expected tuple struct or tuple variant, found unit variant `A::D`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/pattern-error-continue.rs:18:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
LL | B(isize, isize),
|
|
|
|
| --------------- similarly named tuple variant `B` defined here
|
2021-05-02 09:46:29 +00:00
|
|
|
LL | C(isize, isize, isize),
|
|
|
|
LL | D
|
|
|
|
| - `A::D` defined here
|
2019-10-15 00:20:50 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | A::D(_) => (),
|
2021-05-02 09:46:29 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
help: use this syntax instead
|
|
|
|
|
|
|
|
|
LL | A::D => (),
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~
|
2021-05-02 09:46:29 +00:00
|
|
|
help: a tuple variant with a similar name exists
|
|
|
|
|
|
|
|
|
LL | A::B(_) => (),
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
|
2021-08-18 23:13:52 +00:00
|
|
|
--> $DIR/pattern-error-continue.rs:17:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-09-05 02:04:26 +00:00
|
|
|
LL | B(isize, isize),
|
2021-08-18 23:13:52 +00:00
|
|
|
| ----- ----- tuple variant has 2 fields
|
2019-09-05 02:04:26 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | A::B(_, _, _) => (),
|
2021-08-25 21:40:06 +00:00
|
|
|
| ^ ^ ^ expected 2 fields, found 3
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/pattern-error-continue.rs:22:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-01-06 01:08:15 +00:00
|
|
|
LL | match 'c' {
|
2019-12-30 06:02:24 +00:00
|
|
|
| --- this expression has type `char`
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | S { .. } => (),
|
2019-11-15 17:37:01 +00:00
|
|
|
| ^^^^^^^^ expected `char`, found struct `S`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2019-11-15 07:45:30 +00:00
|
|
|
--> $DIR/pattern-error-continue.rs:28:7
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | f(true);
|
2019-11-15 17:37:01 +00:00
|
|
|
| ^^^^ expected `char`, found `bool`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0023, E0308, E0433, E0532.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0023`.
|