Address Phase C review (C-1, C-2): make CallResolver.plan's SelectedFunc the single shared call author consumed by the lower-call sites instead of each re-resolving; route free-fn value-receiver UFCS through the selector in plan so plan typing and lowering pick the same author under a flat same-name collision. Adds regression 0740-modules-flat-same-name-ufcs-typing. Salvaged from a worker killed at the wall during its final gate step; manager verified the gate at ground truth (zig build test exit 0; run_examples 476/0 with 0722-0735 + 0740 ok; m3te ios-sim exit 0).
8 lines
438 B
Plaintext
8 lines
438 B
Plaintext
#import "modules/std.sx";
|
|
// b.sx authors its OWN `tag` returning s64. `show_b`'s `v.tag()` must be both
|
|
// dispatched AND typed as b.tag (s64 = 110), not the first-wins winner from a.sx
|
|
// (string). `print` types each arg from the call plan, so a mistype here boxes
|
|
// the s64 as a string pointer → segfault before the fix.
|
|
tag :: (x: s64) -> s64 { return x + 100; }
|
|
show_b :: () { v : s64 = 10; print("b: v.tag() = {}\n", v.tag()); }
|