mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 09:08:03 +02:00
19 lines
131 B
ObjectPascal
19 lines
131 B
ObjectPascal
{$R+}
|
|
var
|
|
|
|
c : cardinal;
|
|
i : integer;
|
|
w : word;
|
|
b : byte;
|
|
si : shortint;
|
|
|
|
begin
|
|
w:=c;
|
|
i:=c;
|
|
b:=c;
|
|
b:=si;
|
|
end.
|
|
|
|
|
|
|