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

21 lines
249 B
ObjectPascal

{$inline on }
var A: array [0..1] of Integer;
function F: Integer; inline;
begin
F := A[1];
end;
begin
A[0] := 1234;
A[1] := 5678;
WriteLn(F); { writes 1234 }
if F<>5678 then
begin
Writeln('ERROR!');
Halt(1);
end;
end.