mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 17:48:53 +02:00
10 lines
82 B
ObjectPascal
10 lines
82 B
ObjectPascal
procedure p(var w:word);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
i : smallint;
|
|
begin
|
|
p(word(i));
|
|
end.
|