Files
sx/examples/diagnostics/1165-diagnostics-generic-return-unbound.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

25 lines
786 B
Plaintext

// A `$T`-generic RETURN type with no parameter mentioning `$T` is rejected
// at the declaration: the fn isn't a template (type params derive from
// params), and no call site could ever bind the return. All three declare
// surfaces diagnose: a top-level fn, a struct-body method, and a
// (non-parameterised) impl method. Each used to PANIC the compiler at LLVM
// emission via the `.unresolved` tripwire — even when never called.
#import "modules/std.sx";
make :: () -> $T { 0 }
Foo :: struct {
x: i64;
weird :: (self: *Foo) -> $T { 0 }
}
Show2 :: protocol { show2 :: (self: *Self) -> string; }
IntBox :: struct { v: i64; }
impl Show2 for IntBox {
show2 :: (self: *IntBox) -> string { "x" }
leak :: (self: *IntBox) -> $T { 0 }
}
main :: () { print("ok\n"); }