summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0403.pp
blob: f72520c34a19e41ff9af5eb7b4739ff421c87b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{$mode objfpc}

type
  tclass = class
    procedure t; virtual;
  end;

procedure tclass.t;
begin
end;

var
  p: pointer;
begin
  p := @tclass.t;
end.