master
1var func: *const fn () void = &bar;
2
3export fn foo() void {
4    func();
5}
6
7fn bar() void {}