rust/tests/ui/match/issue-12552.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
213 B
Rust
Raw Normal View History

// 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
}
}