rust/tests/ui/binding/match-with-ret-arm.rs
2024-02-16 20:02:50 +00:00

13 lines
305 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)
}