1 2 3 4 5 6 7 8 9 10
pub fn main() { let a = 123; fn test(x: i32) -> i32 { x + 456 } let b; b = test(a); }