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