blob: f67b3bea6921232963c86054b9a88200dde45a9c [file] [log] [blame]
(:*******************************************************:)
(: Test: K2-InternalVariablesWithout-6 :)
(: Written by: Frans Englich :)
(: Date: 2006-08-04T17:13:26Z :)
(: Purpose: A variable depending indirectly on a recursive function. :)
(:*******************************************************:)
declare variable $local:myVar := local:myFunction();
declare function local:myFunction2()
{
local:myFunction(), $local:myVar
};
declare function local:myFunction()
{
local:myFunction2()
};
local:myFunction()