mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
23 lines
250 B
ObjectPascal
23 lines
250 B
ObjectPascal
unit uw41063;
|
|
|
|
{$mode objfpc}{$h+}
|
|
{$modeswitch functionreferences}
|
|
|
|
interface
|
|
|
|
type
|
|
TMyClass = class
|
|
FProcRef: reference to procedure;
|
|
procedure proc;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure TMyClass.proc;
|
|
begin
|
|
FProcRef := @proc;
|
|
end;
|
|
|
|
end.
|
|
|