// #23 -T collision — a user `fn run` collides with lib/test's bound // runner `run` (the synth's callee) once `ww test -c` bundles lib/test. // Both stages must loud-reject "duplicate fn run" (rc!=0), never silently // build a binary that calls the wrong run and skips every @test. fn run() void = { return; }; @test fn t_one() void = { assert(1 == 1); };