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

42 lines
1.4 KiB
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: use of undeclared type or module `E`
2018-12-25 09:56:47 -06:00
--> $DIR/pattern-error-continue.rs:35:9
2018-08-08 07:28:26 -05:00
|
LL | E::V => {} //~ ERROR failed to resolve: use of undeclared type or module `E`
| ^ use of undeclared type or module `E`
2018-08-08 07:28:26 -05:00
error[E0532]: expected tuple struct/variant, found unit variant `A::D`
2018-12-25 09:56:47 -06:00
--> $DIR/pattern-error-continue.rs:18:9
2018-08-08 07:28:26 -05:00
|
LL | A::D(_) => (), //~ ERROR expected tuple struct/variant, found unit variant `A::D`
| ^^^-
| |
| help: a tuple variant with a similar name exists: `B`
2018-08-08 07:28:26 -05:00
error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
2018-12-25 09:56:47 -06:00
--> $DIR/pattern-error-continue.rs:17:9
2018-08-08 07:28:26 -05:00
|
LL | A::B(_, _, _) => (), //~ ERROR this pattern has 3 fields, but
| ^^^^^^^^^^^^^ expected 2 fields, found 3
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/pattern-error-continue.rs:22:9
2018-08-08 07:28:26 -05:00
|
LL | match 'c' {
2019-01-06 16:23:57 -06:00
| --- this match expression has type `char`
2018-08-08 07:28:26 -05:00
LL | S { .. } => (),
| ^^^^^^^^ expected char, found struct `S`
|
= note: expected type `char`
found type `S`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/pattern-error-continue.rs:30:7
2018-08-08 07:28:26 -05:00
|
LL | f(true);
| ^^^^ expected char, found bool
error: aborting due to 5 previous errors
Some errors occurred: E0023, E0308, E0433, E0532.
For more information about an error, try `rustc --explain E0023`.