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