tw8528.pp 194 B

12345678910111213141516
  1. { %fail }
  2. program test;
  3. {$mode objfpc}{$H+}
  4. const
  5. AllowedCharSet: set of Byte = [48..60];
  6. var
  7. s: string;
  8. begin
  9. s := 'test0';
  10. if s[5] in AllowedCharSet then
  11. Writeln('huh?');
  12. end.