blob: 9bfb24851d3f865bed2240e9d9742f3c30824b88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ Old file: tbs0040.pp }
{ shows the if b1 xor b2 problem where b1,b2 :boolean OK 0.9.9 (FK) }
{ xor operator bug }
{ needs fix in pass_1.pas line }
{ 706. as well as in the code }
{ generator - secondadd() }
var
b1,b2: boolean;
Begin
b1:=true;
b2:=false;
If (b1 xor b2) Then
begin
end
else
begin
writeln('Problem with bool xor');
halt;
end;
b1:=true;
b2:=true;
If (b1 xor b2) Then
begin
writeln('Problem with bool xor');
halt;
end;
writeln('No problem found');
end.
|