//ww:error c "cannot assign [3]int to []i32" ww "array literal cannot borrow as a slice here; bind it to a `let` first" package main; export fn main() i32 = { let s: []i32 = [0, 0]; s = [1, 2, 3]; return s[0]; };