fpc/tests/webtbs/tw27744.pp
florian 8bbd2e4030 + test for issue #27744
git-svn-id: trunk@34790 -
2016-11-05 23:05:46 +00:00

20 lines
265 B
ObjectPascal

{ %opt=-Oodfa -Sew }
{$mode objfpc}
type
tarr = array of longint;
var
a: array of longint;
function IndexOfValue(const a: tarr; l: longint): longint;
begin
for result:=low(a) to high(a) do
if a[result]=l then
exit;
result:=-1;
end;
begin
end.