* new bug

This commit is contained in:
peter 2004-05-23 20:36:46 +00:00
parent 6ae2f1b4dd
commit 5303f5e62c

16
tests/webtbs/tw3109.pp Normal file
View File

@ -0,0 +1,16 @@
var
l : smallint;
q : cardinal;
begin
l:=1;
{$if sizeof(l)=3}
l:=2;
{$endif}
if l<>2 then
begin
writeln('Error!');
halt(1);
end;
end.