fpc/tests/webtbs/tw11254.pp
Jonas Maebe 85b9c65f51 * fixed support in macpas mode for anonymous procedure/function types
in parameter lists after r9484 (mantis #11254)

git-svn-id: trunk@10885 -
2008-05-05 11:59:35 +00:00

16 lines
253 B
ObjectPascal

{ %norun }
{$mode macpas}
{$calling mwpascal}
unit tw11254;
interface
procedure Iterate( function theCallback( theDataPtr: Pointer): Integer);
implementation
procedure Iterate( function theCallback( theDataPtr: Pointer): Integer); begin end;
end.