* version which also fails in 2.3.1

git-svn-id: trunk@11479 -
This commit is contained in:
Jonas Maebe 2008-07-28 20:15:03 +00:00
parent 916e982519
commit 4ea13a420e

View File

@ -1,13 +1,17 @@
{ %norun }
{$inline on}
program TEST;
{$EXTENDEDSYNTAX OFF}
USES
DOS;
VAR
IO: WORD; { or LONGINT if wanted }
IO: WORD; { or LONGINT if wanted }
function test: word; inline;
begin
test:=1;
writeln(io);
end;
BEGIN
IO:=IORESULT;
IO:=test;
END.