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