fpc/tests/webtbs/tw12000.pp
Jonas Maebe 65f217ed02 * only set dynarray pointer to nil in decref in case the last reference
has been destroyed (mantis #12000)

git-svn-id: trunk@11672 -
2008-08-31 10:07:53 +00:00

34 lines
636 B
ObjectPascal

program arcrash;
{$mode objfpc}{$H+}
type
Trec = record
Signature: array of Integer;
s: ansistring;
end;
var
M: array of Trec;
s2: ansistring;
begin
SetLength(M,2);
SetLength(M[0].Signature,4);
SetLength(M[1].Signature,4);
setlength(m[0].s,2);
s2:=m[0].s;
WriteLn(Length(M[0].Signature), ' ', Length(M[1].Signature));
writeln(length(m[0].s));
M[0].Signature := M[0].Signature;
m[0].s:=m[0].s;
WriteLn(Length(M[0].Signature), ' ', Length(M[1].Signature));
writeln(length(m[0].s));
s2:='';
if (Length(M[0].Signature) <> 4) then
halt(1);
if (Length(M[0].s) <> 2) then
halt(2);
end.