mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
16 lines
161 B
ObjectPascal
16 lines
161 B
ObjectPascal
|
|
var
|
|
l : smallint;
|
|
q : cardinal;
|
|
begin
|
|
l:=1;
|
|
{$if sizeof(l)=2}
|
|
l:=2;
|
|
{$endif}
|
|
if l<>2 then
|
|
begin
|
|
writeln('Error!');
|
|
halt(1);
|
|
end;
|
|
end.
|