unit okshar1; fn add(a: &i32, b: &i32) -> i32 { return a.^ + b.^; } fn test() -> i32 { let x: i32 = 4; let a = &x; let b = &x; return add(a, b); }