blob: 01e793e8685993804b4ac61072ec14b55f6da452 [file] [log] [blame]
fn main() {
let x;
match x {
(..) => {} //~ ERROR type annotations needed
_ => {}
}
match 0u8 {
(..) => {} //~ ERROR mismatched types
_ => {}
}
x = 10;
}