blob: 91a91dab08892f01a331336f6e79d182efb88958 [file] [log] [blame]
(:*******************************************************:)
(: Test: K-FunctionProlog-23 :)
(: Written by: Frans Englich :)
(: Date: 2006-10-05T18:29:39+02:00 :)
(: Purpose: User functions where the last argument of three arguments is unused. :)
(:*******************************************************:)
declare function local:func($a, $b, $unused)
{
$a + $b
};
local:func(1, 2, 3) eq 3