mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 10:49:31 +02:00
19 lines
273 B
ObjectPascal
19 lines
273 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3275 }
|
|
{ Submitted by "Vincent Snijders" on 2004-08-27 }
|
|
{ e-mail: vslist@zonnet.nl }
|
|
program bug3275;
|
|
|
|
var
|
|
b: boolean;
|
|
i: integer;
|
|
j: integer;
|
|
|
|
begin
|
|
b := false;
|
|
i := 4;
|
|
j := 5;
|
|
b := b or i <> j;
|
|
end.
|