mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
17 lines
155 B
ObjectPascal
17 lines
155 B
ObjectPascal
{$mode objfpc}
|
|
|
|
type
|
|
tclass = class
|
|
procedure t; virtual;
|
|
end;
|
|
|
|
procedure tclass.t;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p: codepointer;
|
|
begin
|
|
p := @tclass.t;
|
|
end.
|