Files
sx/examples/types/0178-types-typed-struct-const.sx
agra 66bdc70bf1 test: group examples into per-category folders
Move examples/*.sx and their expected/ snapshots into per-category
subfolders (examples/<category>/...). Folder = leading filename token,
with ffi-objc/ffi-jni kept whole; filenames are unchanged. The corpus
runner and LSP sweep now discover each category's expected/ dir, while
issues/ stays flat. Example 1058's repo-root-relative companion import
is made file-relative. Path strings embedded in 164 snapshots were
regenerated (path-only changes). Test-layout docs in CLAUDE.md updated.
2026-06-21 14:41:34 +03:00

17 lines
513 B
Plaintext

// A TYPED struct constant ('W : Color : Color.{...}') registers like the
// untyped form ('WHITE :: Color.{...}') — value reads, field reads, and
// independent copies. (Both shapes keep inline re-lowering semantics
// until PLAN-CONST-AGG step 4 migrates them to const globals.)
#import "modules/std.sx";
Color :: struct { r, g, b: i64; }
W : Color : Color.{ r = 1, g = 2, b = 3 };
main :: () {
print("{} {} {}\n", W.r, W.g, W.b);
c := W;
c.g = 99;
print("copy={} const={}\n", c.g, W.g);
}