fpc/tests/webtbs/tw11619.pp
Jonas Maebe 4ea13a420e * version which also fails in 2.3.1
git-svn-id: trunk@11479 -
2008-07-28 20:15:03 +00:00

18 lines
195 B
ObjectPascal

{ %norun }
{$inline on}
program TEST;
{$EXTENDEDSYNTAX OFF}
VAR
IO: WORD; { or LONGINT if wanted }
function test: word; inline;
begin
test:=1;
writeln(io);
end;
BEGIN
IO:=test;
END.