lang: opt-in UFCS — ufcs-marked fns + alias dot-dispatch, generic binding via receiver; one binding builder for plan-side generic returns
This commit is contained in:
@@ -2,5 +2,5 @@
|
||||
// a.sx authors `tag` returning a string; imported first → first-wins winner.
|
||||
// `show_a`'s `v.tag()` is the caller's OWN author (own == winner → existing UFCS
|
||||
// path, byte-for-byte unchanged): typed AND dispatched as a.tag (string).
|
||||
tag :: (x: s64) -> string { return "a-string"; }
|
||||
tag :: ufcs (x: s64) -> string { return "a-string"; }
|
||||
show_a :: () { v : s64 = 10; print("a: v.tag() = {}\n", v.tag()); }
|
||||
|
||||
@@ -3,5 +3,5 @@
|
||||
// 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; }
|
||||
tag :: ufcs (x: s64) -> s64 { return x + 100; }
|
||||
show_b :: () { v : s64 = 10; print("b: v.tag() = {}\n", v.tag()); }
|
||||
|
||||
Reference in New Issue
Block a user