unit Test;
function Factorial(value: integer): integer;
begin
if value >= 1 then
result := value
else result := Test.Factorial(value - 1) * value; //Error: Unknown name "Test"
end;
Original issue reported on code.google.com by masonwhe...@gmail.com on 2 Aug 2014 at 5:30
Original issue reported on code.google.com by
masonwhe...@gmail.com
on 2 Aug 2014 at 5:30