tcpstr9.pp 378 B

123456789101112131415
  1. { %skiptarget=android }
  2. program tcpstr9;
  3. {$mode delphiunicode}
  4. {$apptype console}
  5. begin
  6. // this test can be only run with the compiler built right now on the
  7. // same system
  8. if StringCodePage(AnsiString('test')) <> DefaultSystemCodePage then
  9. begin
  10. WriteLn(StringCodePage(AnsiString('test')), ' <> ', DefaultSystemCodePage);
  11. halt(1);
  12. end;
  13. Writeln('ok');
  14. end.