fpc/tests/webtbs/tw8664.pp
Jonas Maebe 31550b0153 * set HaltOnNotReleased to true in all testss using heaptrc so
they'll exit with an error code in case of a memory leak

git-svn-id: trunk@8350 -
2007-09-01 20:36:04 +00:00

15 lines
193 B
ObjectPascal

{ %OPT=-gh }
program project1;
{$mode objfpc}{$H+}
procedure TLResourceListAdd(Values: array of string);
begin
end;
begin
HaltOnNotReleased := true;
TLResourceListAdd(['Value1']);
end.