```zig const S = struct { foo: anytype, }; comptime { var s = S{ // error: array access of non-array type '(anytype)' .foo = [2]u8{0,1}, }; // this works // var s = S{ // .foo = 1, // }; // var b = [2]u8{ 0, 1 }; // s.foo = b; } ```