//ww:run-exit 1 package main; export fn main() i32 = { let a: [3]i32 = [1, 2, 3]; let s: []i32 = a[0:1]; s = a; return s[0]; };