July 16, 2026, 2:34am 1
// The two are less consistent.
const v = T{.x = 1, .y = true}; // why not T.{.x = 1, .y = true} ?
const v: T = .{.x = 1, .y = true};
// The two are more consistent.
const v = T.declOrTag;
const v: T = .declOrTag;
0 Comments
Log in to join the conversation.No comments yet. Be the first to share your thoughts.