mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
20 lines
366 B
ObjectPascal
20 lines
366 B
ObjectPascal
{ %version=1.1}
|
|
|
|
{ Source provided for Free Pascal Bug Report 2128 }
|
|
{ Submitted by "Bill Rayer" on 2002-09-18 }
|
|
{ e-mail: lingolanguage@hotmail.com }
|
|
|
|
{
|
|
Excessive 64-bit literal causes the FPC compiler to crash.
|
|
}
|
|
var
|
|
c : comp;
|
|
begin
|
|
c := -9223372036854775808;
|
|
if c<>-9223372036854775808 then
|
|
begin
|
|
writeln('Error');
|
|
halt(1);
|
|
end;
|
|
end.
|