mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
213 B
Rust
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
|
|
}
|
|
}
|