mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-04 21:27:21 +01: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.
|