blob: f53cb519e527a63ddf4cdd7b8e2979eb865dee09 [file] [log] [blame]
(:*******************************************************:)
(: Test: K2-InternalVariablesWithout-10 :)
(: Written by: Frans Englich :)
(: Date: 2006-08-04T17:13:26Z :)
(: Purpose: Function arguments shadow global variables. :)
(:*******************************************************:)
declare variable $local:myVar := local:myFunc(3);
declare function local:myFunc($local:myVar)
{
$local:myVar
};
local:myFunc(6) eq 6