tw2853b.pp 373 B

1234567891011121314151617181920
  1. { %FAIL }
  2. { %OPT=-So }
  3. { Test variant showing another failure }
  4. { added by Pierre }
  5. { Source provided for Free Pascal Bug Report 2853 }
  6. { Submitted by "Bj”rn Hendriks" on 2003-12-18 }
  7. { e-mail: [email protected] }
  8. program test;
  9. begin
  10. WriteLn('abc');
  11. {$ifdef LOOP}
  12. WriteLn('def');
  13. {
  14. *)
  15. WriteLn('ghi');
  16. {$endif LOOP}
  17. WriteLn('test');
  18. end.