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.
33 lines
558 B
Plaintext
33 lines
558 B
Plaintext
// Sub-32-bit enum variants ride through a protocol-typed receiver's
|
|
// method call without being collapsed to tag=0.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
Fmt :: enum { a; b; }
|
|
|
|
Proto :: protocol {
|
|
take_fmt :: (self: *Self, f: Fmt);
|
|
}
|
|
|
|
Impl :: struct {}
|
|
impl Proto for Impl {
|
|
take_fmt :: (self: *Impl, f: Fmt) {
|
|
n : i64 = xx f;
|
|
print("proto f = {}\n", n);
|
|
}
|
|
}
|
|
|
|
take :: (f: Fmt) -> i64 {
|
|
n : i64 = xx f;
|
|
n
|
|
}
|
|
|
|
main :: () -> i32 {
|
|
print("direct a={} b={}\n", take(.a), take(.b));
|
|
|
|
p : Proto = xx @Impl.{};
|
|
p.take_fmt(.b);
|
|
p.take_fmt(.a);
|
|
0
|
|
}
|