mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 22:39:30 +02:00
14 lines
179 B
ObjectPascal
14 lines
179 B
ObjectPascal
{$ifdef fpc}{$mode delphi}{$endif}
|
|
|
|
type
|
|
tmethod = record
|
|
code,data : pointer;
|
|
end;
|
|
|
|
var
|
|
p : procedure(l : longint) of object;
|
|
|
|
begin
|
|
tmethod(p).data:=nil;
|
|
end.
|