blob: b7f71dd1ce354c2500733bb364ec8b52ce265530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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
}
}
|