summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw20874a.pp
blob: b1a825f9e8421cdf94c9f87849adbd1ea1f8e089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
program qwordbooltest;

{$mode objfpc}{$H+}

var
  A, B : QWordBool;
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.