mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 03:59:27 +02:00
19 lines
227 B
ObjectPascal
19 lines
227 B
ObjectPascal
{ Old file: tbs0121.pp }
|
|
{ cardinal -> byte conversion not work (and crashes) OK 0.99.6 (FK) }
|
|
|
|
{$R+}
|
|
var
|
|
|
|
c : cardinal;
|
|
i : integer;
|
|
w : word;
|
|
b : byte;
|
|
si : shortint;
|
|
|
|
begin
|
|
w:=c;
|
|
i:=c;
|
|
b:=c;
|
|
b:=si;
|
|
end.
|