mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 22:08:18 +02:00
18 lines
218 B
ObjectPascal
18 lines
218 B
ObjectPascal
{ %OPT= -So }
|
|
|
|
{ Old file: tbs0196.pp }
|
|
{ "function a;" is accepted (should require result type) OK 0.99.1 (PM) }
|
|
|
|
Unit tb0165;
|
|
interface
|
|
|
|
function a : integer;
|
|
|
|
implementation
|
|
function a;
|
|
begin
|
|
a:=1;
|
|
end;
|
|
|
|
end.
|