mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-22 11:09:10 +01:00
17 lines
151 B
ObjectPascal
17 lines
151 B
ObjectPascal
{$mode objfpc}
|
|
|
|
type
|
|
tclass = class
|
|
procedure t; virtual;
|
|
end;
|
|
|
|
procedure tclass.t;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p: pointer;
|
|
begin
|
|
p := @tclass.t;
|
|
end.
|