rust/src/test/ui/pattern/pattern-error-continue.stderr

45 lines
1.3 KiB
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: use of undeclared type or module `E`
2018-12-25 15:56:47 +00:00
--> $DIR/pattern-error-continue.rs:35:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | E::V => {}
| ^ use of undeclared type or module `E`
2018-08-08 12:28:26 +00:00
error[E0532]: expected tuple struct/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-03-09 12:03:44 +00:00
LL | A::D(_) => (),
2018-08-08 12:28:26 +00:00
| ^^^-
| |
| help: a tuple variant with a similar name exists: `B`
2018-08-08 12:28:26 +00:00
error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
2018-12-25 15:56:47 +00:00
--> $DIR/pattern-error-continue.rs:17:9
2018-08-08 12:28:26 +00:00
|
LL | B(isize, isize),
| --------------- tuple variant defined here
...
2019-03-09 12:03:44 +00:00
LL | A::B(_, _, _) => (),
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^ expected 2 fields, found 3
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
|
LL | match 'c' {
2019-01-06 22:23:57 +00:00
| --- this match expression has type `char`
2018-08-08 12:28:26 +00:00
LL | S { .. } => (),
| ^^^^^^^^ expected char, found struct `S`
|
= note: expected type `char`
found type `S`
error[E0308]: mismatched types
2018-12-25 15:56:47 +00:00
--> $DIR/pattern-error-continue.rs:30:7
2018-08-08 12:28:26 +00:00
|
LL | f(true);
| ^^^^ expected char, found bool
error: aborting due to 5 previous errors
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`.