045 taint stripped at echo boundary

✓ Passing This code compiles and runs correctly.

Code

input.kz

Must fail at runtime with:

CONTAINS unsanitized

Error Verification

Expected Error Pattern

Taint laundering through a plain-typed echo: []const u8<unsanitized!> passed
to echo(data: []const u8) which returns | out []const u8 (no phantom). The
<unsanitized!> obligation is never discharged. The checker should block the
print of `result` because the taint obligation from `s` was never satisfied.
If the checker is blind after the echo boundary, this is a design gap — the
plain-typed gateway launders the taint silently.

Actual Compiler Output

error[KORU030]: Resource 's' obligation <unsanitized!> was not discharged. No event accepts <!unsanitized>.
  --> auto_discharge:46:0

❌ Compiler coordination error: Auto-discharge failed (multiple disposal options or no disposal event)
error: CompilerCoordinationFailed
???:?:?: 0x1004579d3 in _backend.RuntimeEmitter.emit (???)
???:?:?: 0x100458b63 in _backend.main (???)

Flows

flow ~get-input click a branch to expand · @labels scroll to their anchor
get-input

Test Configuration

MUST_FAIL