ref: 4db5274a2f6db10e31e11c503f36c85a98c65fbc 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("{},{}\n", z[0].x, z[0].y) }