summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0423.pp
blob: 74b14fc0634ea209ba85aac7d11c1ea08b238c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{$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.