forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
suggest wrapping patterns with compatible enum variants
- Loading branch information
1 parent
d7aca22
commit dd6683f
Showing
6 changed files
with
194 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
enum Foo { | ||
Bar(Bar), | ||
} | ||
struct Bar { | ||
x: i32, | ||
} | ||
|
||
fn a(f: Foo) { | ||
match f { | ||
Bar { x } => { | ||
//~^ ERROR mismatched types | ||
//~| HELP try wrapping | ||
} | ||
} | ||
} | ||
|
||
struct S; | ||
|
||
fn b(s: Option<S>) { | ||
match s { | ||
S => { | ||
//~^ ERROR mismatched types | ||
//~| HELP try wrapping | ||
//~| HELP introduce a new binding instead | ||
} | ||
_ => {} | ||
} | ||
} | ||
|
||
fn c(s: Result<S, S>) { | ||
match s { | ||
S => { | ||
//~^ ERROR mismatched types | ||
//~| HELP try wrapping | ||
//~| HELP introduce a new binding instead | ||
} | ||
_ => {} | ||
} | ||
} | ||
|
||
fn main() {} |
68 changes: 68 additions & 0 deletions
68
src/test/ui/did_you_mean/compatible-variants-in-pat.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/compatible-variants-in-pat.rs:10:9 | ||
| | ||
LL | match f { | ||
| - this expression has type `Foo` | ||
LL | Bar { x } => { | ||
| ^^^^^^^^^ expected enum `Foo`, found struct `Bar` | ||
| | ||
help: try wrapping the pattern in `Foo::Bar` | ||
| | ||
LL | Foo::Bar(Bar { x }) => { | ||
| +++++++++ + | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/compatible-variants-in-pat.rs:21:9 | ||
| | ||
LL | struct S; | ||
| --------- unit struct defined here | ||
... | ||
LL | match s { | ||
| - this expression has type `Option<S>` | ||
LL | S => { | ||
| ^ | ||
| | | ||
| expected enum `Option`, found struct `S` | ||
| `S` is interpreted as a unit struct, not a new binding | ||
| | ||
= note: expected enum `Option<S>` | ||
found struct `S` | ||
help: try wrapping the pattern in `Some` | ||
| | ||
LL | Some(S) => { | ||
| +++++ + | ||
help: introduce a new binding instead | ||
| | ||
LL | other_s => { | ||
| ~~~~~~~ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/compatible-variants-in-pat.rs:32:9 | ||
| | ||
LL | struct S; | ||
| --------- unit struct defined here | ||
... | ||
LL | match s { | ||
| - this expression has type `Result<S, S>` | ||
LL | S => { | ||
| ^ | ||
| | | ||
| expected enum `Result`, found struct `S` | ||
| `S` is interpreted as a unit struct, not a new binding | ||
| | ||
= note: expected enum `Result<S, S>` | ||
found struct `S` | ||
help: try wrapping the pattern in a variant of `Result` | ||
| | ||
LL | Ok(S) => { | ||
| +++ + | ||
LL | Err(S) => { | ||
| ++++ + | ||
help: introduce a new binding instead | ||
| | ||
LL | other_s => { | ||
| ~~~~~~~ | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters