fpc/tests/webtbf/tw11254a.pp
Jonas Maebe dc1ac3f9fa + added missing { %fail }
git-svn-id: trunk@10886 -
2008-05-05 12:07:17 +00:00

20 lines
285 B
ObjectPascal

{ %fail }
{$mode macpas}
{$calling mwpascal}
unit tw11254a;
interface
type
t1 = function ( theDataPtr: Pointer): Integer;
t2 = function ( theDataPtr: Pointer): Integer;
procedure Iterate( theCallback: t1);
implementation
procedure Iterate( theCallback: t2); begin end;
end.