fpc/tests/webtbs/tw3661.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
243 B
ObjectPascal

{ %OPT=-glhc }
{ Source provided for Free Pascal Bug Report 3661 }
{ Submitted by "Martin Schreiber" on 2005-02-16 }
{ e-mail: }
program project1;
{$mode objfpc}{$H+}
uses
Classes;
begin
HaltOnNotReleased := true;
writeln('abc');
end.