tb0039.pp 420 B

12345678910111213141516171819
  1. { Old file: tbs0044.pp }
  2. { shows $ifdef and comment nesting/directive problem OK 0.99.1 (PFV) }
  3. { Problem with nested comments -- as you can probably see }
  4. { but it does give out kind of a funny error output :) }
  5. {$UNDEF VP}
  6. {$IFDEF Windows} ssss {$ENDIF} {No Syntax Error}
  7. {$IFDEF VP}
  8. {$D+}{$R+}
  9. {$ELSE}
  10. {$IFDEF Windows} ssss {$ENDIF} {Syntax Error at: Col 25 }
  11. {$ENDIF}
  12. BEGIN
  13. END.