fpc/tests/webtbs/uw27522b.pp
Jonas Maebe a3afefc6cb + test for mantis #27522 (fixed in r29811)
git-svn-id: trunk@34601 -
2016-10-02 21:51:31 +00:00

16 lines
158 B
ObjectPascal

{$MODE OBJFPC}
unit uw27522b;
interface
implementation
type
TTest2Callback = procedure() of object;
function Test2(): TTest2Callback;
begin
end;
end.