I currently have one union(enum) like:
const Node = union(enum) {
none,
...
};
I try initializing it to "none":
const default_node = Node { .none };
and gets this error:
type 'main.Node' does not support array initialization syntax
(but it works if I change the type to u8 and init with 0 ? how i'm supposed to init a void field?)