mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 10:59:35 +02:00
18 lines
171 B
ObjectPascal
18 lines
171 B
ObjectPascal
{ %norun }
|
|
{ %opt=-gl }
|
|
{$goto on}
|
|
library tlib1a;
|
|
|
|
procedure p(var a : pointer);
|
|
label
|
|
we;
|
|
begin
|
|
we:
|
|
a:=@we;
|
|
end;
|
|
|
|
exports p;
|
|
|
|
begin
|
|
end.
|