mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 21:28:14 +02:00
19 lines
214 B
ObjectPascal
19 lines
214 B
ObjectPascal
{$mode objfpc}
|
|
{$modeswitch functionreferences}
|
|
|
|
unit tw39903;
|
|
interface
|
|
|
|
type
|
|
TCallback = record
|
|
proc: reference to procedure;
|
|
end;
|
|
|
|
TObj = class
|
|
proc: reference to procedure;
|
|
end;
|
|
|
|
implementation
|
|
end.
|
|
|