mirror of https://github.com/rust-lang/rust
42 lines
656 B
Rust
42 lines
656 B
Rust
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() {}
|