Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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)
}