fpc/bugs/bug0148.pp
1998-08-11 21:42:02 +00:00

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.