1 2 3 4 5 6 7 8 9 10
export fn foo(x: u32) u64 { return bar(x); } fn bar(x: u32) u64 { y(); return x; } fn y() void {}