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.
17 lines
513 B
Plaintext
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);
|
|
}
|