rust/tests/ui/binding/match-with-ret-arm.rs

13 lines
304 B
Rust

// run-pass
pub fn main() {
// sometimes we have had trouble finding
// the right type for f, as we unified
// bot and u32 here
let f = match "1234".parse::<usize>().ok() {
None => return (),
Some(num) => num as u32
};
assert_eq!(f, 1234);
println!("{}", f)
}