mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 20:22:45 +02:00
19 lines
258 B
ObjectPascal
19 lines
258 B
ObjectPascal
unit tbug701d;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
var
|
|
startmem : longint;
|
|
|
|
initialization
|
|
startmem:=memavail;
|
|
finalization
|
|
if startmem<>memavail then
|
|
begin
|
|
writeln('Problem with ansistrings in units');
|
|
halt(1);
|
|
end;
|
|
end.
|