aboutsummaryrefslogtreecommitdiff
path: root/test/cases/non_leaf_functions.zig
blob: cb1737130e0e2cebd51b96e1c11ca8d8f7ee799f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub fn main() void {
    foo();
}

fn foo() void {
    bar();
}

fn bar() void {}

// run
//