/* Test function call that should not match */ is_even : n -> n % 2 = 0; test_no_match : n -> when n is is_even n then "function call result" 5 then "five" _ then "other"; result : test_no_match 5; ..out result;