//ww:error "insert must operate on a slice" package main; export fn main() i32 = { let t: [3]i64 = [1, 2, 3]; insert(t[0], 9); return 0; };