fpc/tests/tbs/tb0102.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.