fpc/tests/webtbs/tw13820.pp
Jonas Maebe 966ebbf157 * fixed missing reference counting in case a refcounted type was implicitly
type casted to a non-refcounted type, e.g. dynarray to pointer in Delphi
    mode (mantis #13820)

git-svn-id: trunk@13195 -
2009-05-25 19:41:14 +00:00

13 lines
179 B
ObjectPascal

{ %opt=-gh }
program copytest;
var
S, D : array of Integer;
begin
HaltOnNotReleased := true;
SetLength(S,4000);
D := Copy(Copy(S));
end.