//ww:run-exit 8 package main; fn add1(x: i32) i32 = { return x + 1; }; export fn main() i32 = { let f: *fn(x: i32) i32 = &add1; return (*f)(7); };