mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 01:08:07 +02:00
16 lines
127 B
ObjectPascal
16 lines
127 B
ObjectPascal
type
|
|
t1 = longint;
|
|
|
|
procedure p(t3:word);
|
|
var
|
|
t2 : record
|
|
t1 : t1;
|
|
end;
|
|
begin
|
|
writeln(t3);
|
|
end;
|
|
|
|
begin
|
|
p(10);
|
|
end.
|