mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
15 lines
139 B
ObjectPascal
15 lines
139 B
ObjectPascal
type
|
|
openstring=integer;
|
|
|
|
procedure test(var x:openstring);
|
|
begin
|
|
writeln(x);
|
|
end;
|
|
|
|
var
|
|
x: openstring;
|
|
begin
|
|
x:=1;
|
|
test(x);
|
|
end.
|