blob: 1ac2ff9ff593193add6198f2b51363bc23486fc9 [file] [log] [blame]
(:*******************************************************:)
(: Test: K-FunctionProlog-37 :)
(: Written by: Frans Englich :)
(: Date: 2006-10-05T18:29:39+02:00 :)
(: Purpose: The variable '$myArg' is in scope inside one function, but not the other function. :)
(:*******************************************************:)
declare function local:MyFunction($myArg)
{
0
};
declare function local:MyFunction2($myArg2)
{
$myArg
};
1