fpc/tests/tbf/tb18.pp
2000-11-29 23:14:10 +00:00

22 lines
229 B
ObjectPascal

{ Old file: tbf0101.pp }
{ no type checking for routines in interfance and OK 0.99.1 (CEC) }
Unit tbs0101;
Interface
Procedure MyProc(V: Integer);
Implementation
Procedure MyProc(Y: Integer);
Begin
end;
end.