mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-18 17:34:40 -04: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() { }
|