fpc/tests/webtbs/tw1284.pp
peter e10aa660f4 * hint will be triggered because of a conditional when compiling
the system unit. This will not be changed in 1.0.x
2003-01-15 00:51:28 +00:00

12 lines
140 B
ObjectPascal

{ %version=1.1 }
{ %OPT=-Seh -vh }
{$mode objfpc}
function f(p: word): boolean;
begin
result := (p mod 10 = 0);
end;
begin
f(0)
end.