mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 12:59:26 +02:00
22 lines
229 B
ObjectPascal
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.
|
|
|
|
|
|
|