//ww:error "not enough arguments" // Arity, missing side: the callee read a garbage second param slot. package main; fn add(a: i64, b: i64) i64 = { return a + b; }; export fn main() i32 = { let x: i64 = add(4); return x: i32; };