fpc/tests/webtbs/tw3109.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.