mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
19 lines
219 B
ObjectPascal
19 lines
219 B
ObjectPascal
{%opt=-OoSTACKFRAME}
|
|
|
|
procedure Proc;
|
|
var
|
|
s:shortstring;
|
|
begin
|
|
s:='test';
|
|
if Copy(s,1,4)<>'test' then begin
|
|
writeln('Test failed!');
|
|
Halt(1);
|
|
end
|
|
else
|
|
writeln('Test OK.');
|
|
end;
|
|
|
|
begin
|
|
Proc;
|
|
end.
|