Files
sx/examples/protocols/0401-protocols-protocol-in-wrapper-struct.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

49 lines
1.5 KiB
Plaintext

// Protocol value as a field of a wrapper struct, constructed from a stack
// local inside a function and appended to a `List`. The payload must be
// heap-copied so dispatch survives the constructing function returning.
#import "modules/std.sx";
Sizable :: protocol {
size :: (self: *Self) -> i64;
}
Widget :: struct { value: i64; }
impl Sizable for Widget {
size :: (self: *Widget) -> i64 { self.value }
}
// Wrapper struct with a protocol field (like ViewChild)
Item :: struct {
view: Sizable;
}
Container :: struct {
items: List(Item);
add :: (self: *Container, w: Widget) {
p := w; // local copy
self.items.append(Item.{ view = p }); // protocol created from stack local `p`
// Works here: stack local `p` is still alive
out("inside add: ");
print("{}\n", self.items.items[self.items.len - 1].view.size());
}
}
main :: () -> void {
c : Container = .{};
c.add(Widget.{ value = 42 });
c.add(Widget.{ value = 99 });
// BUG: items[0] should return 42, but returns 99 (reads items[1]'s stack slot)
// Both protocol values point to the same stack address (the `p` local in add())
r0 := c.items.items[0].view.size();
r1 := c.items.items[1].view.size();
print("items[0] = {} (expected 42)\n", r0);
print("items[1] = {} (expected 99)\n", r1);
// With more stack activity between add() and the reads, this crashes
// (stack memory overwritten by other function calls)
}