tw2853.pp 360 B

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