1234567891011121314151617181920 |
- { %FAIL }
- { %OPT=-So -dLOOP }
- { Test variant showing another failure }
- { added by Pierre }
- { Source provided for Free Pascal Bug Report 2853 }
- { Submitted by "Bj”rn Hendriks" on 2003-12-18 }
- { e-mail: [email protected] }
- program test;
- begin
- WriteLn('abc');
- {$ifdef LOOP}
- WriteLn('def');
- {
- *)
- WriteLn('ghi');
- {$endif LOOP}
- WriteLn('test');
- end.
|