tw3553.pp 347 B

1234567891011121314151617181920212223
  1. { %fail }
  2. { %opt=-Sew }
  3. { Source provided for Free Pascal Bug Report 3553 }
  4. { Submitted by "Naj Kejah" on 2005-01-15 }
  5. { e-mail: [email protected] }
  6. var K : integer;
  7. BEGIN
  8. while FALSE do
  9. K:=2;{ NO warning "unreachable code" from User.txt }
  10. if FALSE then
  11. K:=2
  12. else
  13. K:=3;
  14. if TRUE then
  15. K:=2
  16. else
  17. K:=3;
  18. END.