Files
sx/examples/modules/0775-modules-qualified-generic-missing-member.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

24 lines
982 B
Plaintext

// A QUALIFIED generic head `a.Box(i64)` where namespace `a` exists but authors
// NO member named `Box` must DIAGNOSE the missing member — never silently fall
// back to the bare last-wins `struct_template_map` and instantiate an unrelated
// module's same-name `Box`.
//
// `a.sx` authors only `Other` (no `Box`); `b.sx` authors a generic `Box($T)`.
// The qualified reference `a.Box(i64)` must report that `a` has no member `Box`,
// NOT resolve to `b.Box`.
//
// Regression (Phase E4 finding #2): before the qualified head path diagnosed the
// missing member, `qualifiedStructTemplate` returned null and the code fell
// through to the bare global template, silently instantiating `b.Box`
// (`size=16 x=1 y=2`, exit 0).
#import "modules/std.sx";
a :: #import "0775-modules-qualified-generic-missing-member/a.sx";
b :: #import "0775-modules-qualified-generic-missing-member/b.sx";
main :: () -> i32 {
x : a.Box(i64) = .{ x = 1, y = 2 };
print("{}\n", x.x);
0
}