[Accepted Proposal](https://github.com/ziglang/zig/issues/2235#issuecomment-481941256) ---- The new anonymous enum literals are great, but they don't to seem work with arrays. I assume that this is a bug. Let's take this enum as an example: ```zig const MyEnum = enum {Ok, Error}; ``` Declaring a single variable works just fine: ```zig var enum_instance: MyEnum = .Ok; ``` But an array of MyEnum does not: ```zig var enum_instances: []MyEnum = {.Error}; ``` Which leads to the following compiler output: ``` error: expected token '=', found '}' ```