mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00

accepted in Delphi mode + extra test case where something similar has to succeed) git-svn-id: trunk@5698 -
12 lines
96 B
ObjectPascal
12 lines
96 B
ObjectPascal
{$mode delphi}
|
|
|
|
function test: byte; forward;
|
|
|
|
function test;
|
|
begin
|
|
test:=5;
|
|
end;
|
|
|
|
begin
|
|
end.
|