fpc/tests/tbs/tb0128.pp
2000-11-30 22:38:14 +00:00

17 lines
201 B
ObjectPascal

{ Old file: tbs0147.pp }
{ function b; is not allowed in implementation OK 0.99.7 (PFV) }
{$mode tp}
unit tb0128;
interface
function b:boolean;
implementation
function b;
begin
end;
end.