mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
11 lines
87 B
ObjectPascal
11 lines
87 B
ObjectPascal
type
|
|
TA = object
|
|
end;
|
|
|
|
var
|
|
P: Pointer;
|
|
|
|
begin
|
|
P := pointer(TypeOf(TA));
|
|
end.
|