//ww:run-exit 7 // A module-scope call initializer executes once in the package task. package main; fn mk() i64 = { return 7; }; let gc: i64 = mk(); export fn main() i32 = { return gc: i32; };