fpc/tests/tbf/tb0017.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

20 lines
236 B
ObjectPascal

{ %FAIL }
{ 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.