fpc/tests/webtbs/tw6686.pp
Jonas Maebe f308bfb45c * fixed mantis 6686 ("function a;" without prior definition of "a"
accepted in Delphi mode + extra test case where something similar
    has to succeed)

git-svn-id: trunk@5698 -
2006-12-24 10:48:49 +00:00

12 lines
96 B
ObjectPascal

{$mode delphi}
function test: byte; forward;
function test;
begin
test:=5;
end;
begin
end.