mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-22 20:51:32 +02:00
21 lines
221 B
ObjectPascal
21 lines
221 B
ObjectPascal
type
|
|
TA = object
|
|
constructor init;
|
|
procedure test;virtual;
|
|
end;
|
|
|
|
constructor TA.init;
|
|
begin
|
|
end;
|
|
|
|
procedure TA.test;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
P: Pointer;
|
|
|
|
begin
|
|
P := pointer(TypeOf(TA));
|
|
end.
|