mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
19 lines
138 B
ObjectPascal
19 lines
138 B
ObjectPascal
type
|
|
t1=longint;
|
|
|
|
procedure p;
|
|
type
|
|
pt1=^t1;
|
|
t1=string;
|
|
var
|
|
t : t1;
|
|
p : pt1;
|
|
begin
|
|
p:=@t;
|
|
p^:='test';
|
|
end;
|
|
|
|
begin
|
|
p;
|
|
end.
|