mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 18:19:24 +02:00
17 lines
201 B
ObjectPascal
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.
|