fpc/bugs/bug0290.pp
1999-09-12 12:19:55 +00:00

10 lines
171 B
ObjectPascal

Program bug0290;
var i: integer;
begin
{ the following line gives a warning and $ffff is changed to $7fff!}
i := $ffff;
if i <> $ffff then
Writeln('bug!')
end.