1 I am trying to raymarch through a voxel octree on the gpu so I'm tyring to use an enum: enum Node { Empty, Filled(ShaderVoxel), Group(array<Node>), } But this is telling me this: error: expected global item ('struct', 'const', 'var', 'alias', ';', 'fn') or the ...