mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
226 B
Rust
13 lines
226 B
Rust
enum Bar { T1((), Option<Vec<isize>>), T2 }
|
|
|
|
fn foo(t: Bar) {
|
|
match t {
|
|
Bar::T1(_, Some::<isize>(x)) => { //~ ERROR mismatched types
|
|
println!("{}", x);
|
|
}
|
|
_ => { panic!(); }
|
|
}
|
|
}
|
|
|
|
fn main() { }
|