mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
16 lines
158 B
ObjectPascal
16 lines
158 B
ObjectPascal
{$MODE OBJFPC}
|
|
unit uw27522b;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
type
|
|
TTest2Callback = procedure() of object;
|
|
|
|
function Test2(): TTest2Callback;
|
|
begin
|
|
end;
|
|
|
|
end.
|