mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 10:35:07 +02:00
15 lines
243 B
ObjectPascal
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.
|