fn foo(int x) { log x; } fn main() { let int x; if (1 > 2) { x = 12; } else { x = 10; } foo(x); }