fpc/bugs/bug0101.pp
1998-03-25 11:26:49 +00:00

19 lines
126 B
ObjectPascal

Unit XYZ;
Interface
Procedure MyProc(V: Integer);
Implementation
Procedure MyProc(Y: Integer);
Begin
end;
end.