mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
18 lines
228 B
ObjectPascal
18 lines
228 B
ObjectPascal
program qwordbooltest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
var
|
|
A, B : Boolean64;
|
|
begin
|
|
A := True;
|
|
|
|
// here it fails: qwordbooltest.pas(12,3) Fatal: Internal error 200109227
|
|
B := not A;
|
|
|
|
if B then
|
|
halt(1);
|
|
|
|
writeln('ok');
|
|
end.
|