Delphi allows 3 versions of the Copy function:
function CopyTest(const S: string): string;
begin
Result:= Copy(S, 1, 5);
Result:= Copy(S, 1);
// Result:= Copy(S); // not allowed for strings, allowed for dyn arrays
end;
FreePascal seems to compile only the 1st (3-arg) version; for the others I have compile-time error
Error: Wrong number of parameters specified for call to "$fpc_ansistr_copy"
Am I missing some FPC compiler switch or Copy overloads are not available in Free Pascal?
referencefor it. However it doesn't mean it's actual with a current RTL code. – TLama Sep 22 '12 at 8:40