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.
20 lines
1014 B
Plaintext
20 lines
1014 B
Plaintext
// issue 0105 / F1 / R1 — a MULTI-LEVEL cross-module const chain pins EACH fold
|
|
// level to its own author. `a.sx` declares `M :: 1`, `K :: M + 1` (= 2). `b.sx`
|
|
// declares a full same-name shadow `M :: 10`, `K :: M + 1` (= 11). `c.sx`
|
|
// flat-imports `a.sx` only and declares `BIG :: K + 100` — its `K` is A's, so
|
|
// `BIG` = 102. `main` flat-imports `b.sx` and `c.sx`.
|
|
//
|
|
// Reading `BIG` walks BIG (c) → K (a) → M (a): each level resolves in its OWN
|
|
// author's context, so `BIG` folds A's chain (= 102) even though `main` itself
|
|
// sees only B's `K` (= 11) bare. If any level leaked to the reader's view, `BIG`
|
|
// would fold B's `K` (→ 111). `#import` is non-transitive, so `K` bare in `main`
|
|
// is B's (A is reachable only through C) → bk=11. Output: big=102 bk=11.
|
|
#import "modules/std.sx";
|
|
#import "0791-modules-same-name-const-multi-level-cross-module/b.sx";
|
|
#import "0791-modules-same-name-const-multi-level-cross-module/c.sx";
|
|
|
|
main :: () -> i32 {
|
|
print("big={} bk={}\n", BIG, K);
|
|
0
|
|
}
|