mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 07:39:27 +02:00
21 lines
206 B
ObjectPascal
21 lines
206 B
ObjectPascal
unit test;
|
|
|
|
interface
|
|
|
|
Function t(a: Byte): byte;
|
|
Function DoT(b: byte): Byte;
|
|
|
|
implementation
|
|
|
|
Function t(a: Byte): Byte;
|
|
var f: byte;
|
|
Begin
|
|
DoT := f;
|
|
End;
|
|
|
|
Function DoT(b: byte): Byte;
|
|
Begin
|
|
End;
|
|
|
|
end.
|