mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 23:48:07 +02:00
15 lines
247 B
ObjectPascal
15 lines
247 B
ObjectPascal
{ Old file: tbs0104.pp }
|
|
{ cardinal greater than $7fffffff aren't written OK 0.99.1 (FK) }
|
|
|
|
{ Two cardinal type bugs }
|
|
var
|
|
c : cardinal;
|
|
begin
|
|
c:=$80000000;
|
|
writeln(c);
|
|
c:=$80001234;
|
|
writeln(c);
|
|
c:=$ffffffff;
|
|
writeln(c);
|
|
end.
|