summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw11027.pp
blob: f6034d8c0c67cf33dd03bab01831ee9af571c4b8 (plain)
1
2
3
4
5
6
7
8
9
10
var i : char;
    bb: bytebool;
begin
  boolean(i) := (1=1);
  if not boolean(i) then
    halt(1);
  boolean(bb):=boolean(i); 
  if not(bb) then
    halt(2);
end.