tw3643.pp 334 B

12345678910111213141516171819
  1. { %fail }
  2. { %opt=-Sew -vw }
  3. { Source provided for Free Pascal Bug Report 3643 }
  4. { Submitted by "Naj Kejah" on 2005-02-08 }
  5. { e-mail: [email protected] }
  6. type
  7. recDep = record
  8. cuec, cuek: byte
  9. end;
  10. var
  11. Dep1Rec : recDep;
  12. BEGIN
  13. WITH Dep1Rec DO
  14. begin
  15. if cuek = 4 then ;
  16. if cuek = 4 then ;
  17. end;
  18. END.