//ww:error c "not assignable" ww "array literal has 3 elements but declared array holds 2" package main; type row = [2]int; type s = struct { f: [2]row }; export fn main() i32 = { let v: s = s{ f = [[1: int, 2: int, 3: int], [4: int, 5: int]] }; return 0; };