~ chicken-core (chicken-5) /tests/specialization-tests.scm
Trap1;; both arms of if branches are dropped23(let ((a "yep")) (if (string? a) 'ok 'no))4(let ((a 'nope)) (if (string? a) 'ok 'no))56;; bidirectional ports are specialized78(let ((p (open-input-string "foo")))9 (when (output-port? p) ; indicates `p' is bidirectional10 (if (input-port? p) 'ok 'no)11 (if (output-port? p) 'ok 'no)))