mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 04:48:02 +02:00
14 lines
167 B
ObjectPascal
14 lines
167 B
ObjectPascal
uses
|
|
dpmiexcp;
|
|
{ Two cardinal type bugs }
|
|
var
|
|
c : cardinal;
|
|
begin
|
|
c:=$80000000;
|
|
writeln(c);
|
|
c:=$80001234;
|
|
writeln(c);
|
|
c:=$ffffffff;
|
|
writeln(c);
|
|
end.
|