ref: 170e5650b446699af330d2a1a6a8046cb78b9b3c dir: /test/foldidx.myr/
use std type xy = struct x : int y : int ;; const X = 123 const Y = 456 const z : xy[1] = [ [.x = X, .y = Y] ] const main = { std.put("%i,%i\n", z[0].x, z[0].y) }