rust/tests/ui/match/issue-12552.rs
2023-01-11 09:32:08 +00:00

12 lines
213 B
Rust

// this code used to cause an ICE
fn main() {
let t = Err(0);
match t {
Some(k) => match k { //~ ERROR mismatched types
a => println!("{}", a)
},
None => () //~ ERROR mismatched types
}
}