tw3275.pp 273 B

123456789101112131415161718
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 3275 }
  3. { Submitted by "Vincent Snijders" on 2004-08-27 }
  4. { e-mail: [email protected] }
  5. program bug3275;
  6. var
  7. b: boolean;
  8. i: integer;
  9. j: integer;
  10. begin
  11. b := false;
  12. i := 4;
  13. j := 5;
  14. b := b or i <> j;
  15. end.