mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
30 lines
260 B
ObjectPascal
30 lines
260 B
ObjectPascal
type
|
|
tobject = object
|
|
procedure x;
|
|
constructor c;
|
|
end;
|
|
|
|
procedure a;
|
|
|
|
begin
|
|
end;
|
|
|
|
procedure tobject.x;
|
|
|
|
begin
|
|
end;
|
|
|
|
constructor tobject.c;
|
|
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p : pointer;
|
|
|
|
begin
|
|
p:=@a;
|
|
p:=@tobject.x;
|
|
p:=@tobject.c;
|
|
end.
|