1export fn a() void { 2 const x = [_]u16{ 1, 2, 3 }; 3 const y: [3]i32 = x; 4 _ = y; 5} 6 7// error 8// 9// 3:23: error: expected type '[3]i32', found '[3]u16'